Packagestimulsoft.report.export.tools.zipwriter
Classpublic class StiCrc32
InheritanceStiCrc32 Inheritance Object



Public Properties
 PropertyDefined By
  value : uint
Returns the CRC32 data checksum computed so far.
StiCrc32
Public Methods
 MethodDefined By
  
reset():void
Resets the CRC32 data checksum as if no update was ever called.
StiCrc32
  
update(buffer:ByteArray, offset:int, count:int):void
Adds the byte array to the data checksum.
StiCrc32
Property Detail
valueproperty
value:uint

Returns the CRC32 data checksum computed so far.


Implementation
    public function get value():uint
    public function set value(value:uint):void
Method Detail
reset()method
public function reset():void

Resets the CRC32 data checksum as if no update was ever called.

update()method 
public function update(buffer:ByteArray, offset:int, count:int):void

Adds the byte array to the data checksum. "buffer" > The buffer which contains the data "offset" > The offset in the buffer where the data starts "count" > The number of data bytes to update the CRC with.

Parameters

buffer:ByteArray
 
offset:int
 
count:int