Méthode | Description | |
---|---|---|
Adler32 ( ) : System |
Creates a new instance of the Adler32 class. The checksum starts off with a value of 1.
|
|
Reset ( ) : void |
Resets the Adler32 checksum to the initial value.
|
|
Update ( byte buffer ) : void |
Updates the checksum with an array of bytes.
|
|
Update ( byte buffer, int offset, int count ) : void |
Updates the checksum with the bytes taken from the array.
|
|
Update ( int value ) : void |
Updates the checksum with a byte value.
|
public Update ( byte buffer ) : void | ||
buffer | byte | /// The source of the data to update with. /// |
Résultat | void |
public Update ( byte buffer, int offset, int count ) : void | ||
buffer | byte | /// an array of bytes /// |
offset | int | /// the start of the data used for this update /// |
count | int | /// the number of bytes to use for this update /// |
Résultat | void |
public Update ( int value ) : void | ||
value | int | /// The data value to add. The high byte of the int is ignored. /// |
Résultat | void |