Method | Description | |
---|---|---|
Crc32 ( ) : System |
Initialise a default instance of
|
|
Reset ( ) : void |
Resets the CRC data checksum as if no update was ever called.
|
|
Update ( byte buffer ) : void |
Updates the CRC data checksum with the bytes taken from a block of data.
|
|
Update ( byte buffer, int offset, int count ) : void |
Update CRC data checksum based on a portion of a block of data
|
|
Update ( int bval ) : void |
Updates the checksum with the int bval. Reversed Data = true |
Method | Description | |
---|---|---|
ComputeCrc32 ( uint oldCrc, byte bval ) : uint |
public Update ( byte buffer ) : void | ||
buffer | byte | Contains the data to update the CRC with. |
return | void |
public Update ( byte buffer, int offset, int count ) : void | ||
buffer | byte | Contains the data to update the CRC with. |
offset | int | The offset into the buffer where the data starts |
count | int | The number of data bytes to update the CRC with. |
return | void |
public Update ( int bval ) : void | ||
bval | int | /// the byte is taken as the lower 8 bits of bval /// |
return | void |