Méthode | Description | |
---|---|---|
Adler32 ( ) : System |
Initialise a default instance of
|
|
Reset ( ) : void |
Resets the Adler32 data checksum as if no update was ever called.
|
|
Update ( byte buffer ) : void |
Updates the Adler32 data checksum with the bytes taken from a block of data.
|
|
Update ( byte buffer, int offset, int count ) : void |
Update Adler32 data checksum based on a portion of a block of data
|
|
Update ( int bval ) : void |
Updates the checksum with the byte b.
|
public Update ( byte buffer ) : void | ||
buffer | byte | Contains the data to update the checksum with. |
Résultat | 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. |
Résultat | void |
public Update ( int bval ) : void | ||
bval | int | /// The data value to add. The high byte of the int is ignored. /// |
Résultat | void |