getValue</code>. The complete checksum object can also be reset
so it can be used again with new data.
Inheritance diagram for ICSharpCode::SharpZipLib::Checksums::IChecksum:
Public Member Functions | |
void | Reset () |
Resets the data checksum as if no update was ever called. | |
void | Update (int bval) |
Adds one byte to the data checksum. | |
void | Update (byte[] buffer) |
Updates the data checksum with the bytes taken from the array. | |
void | Update (byte[] buf, int off, int len) |
Adds the byte array to the data checksum. | |
Properties | |
long | Value |
Returns the data checksum computed so far. |
getValue</code>. The complete checksum object can also be reset
so it can be used again with new data.
Definition at line 48 of file IChecksum.cs.
|
Resets the data checksum as if no update was ever called.
Implemented in ICSharpCode::SharpZipLib::Checksums::Adler32, and ICSharpCode::SharpZipLib::Checksums::Crc32. |
|
Adds the byte array to the data checksum.
Implemented in ICSharpCode::SharpZipLib::Checksums::Adler32, and ICSharpCode::SharpZipLib::Checksums::Crc32. |
|
Updates the data checksum with the bytes taken from the array.
Implemented in ICSharpCode::SharpZipLib::Checksums::Adler32, and ICSharpCode::SharpZipLib::Checksums::Crc32. |
|
Adds one byte to the data checksum.
Implemented in ICSharpCode::SharpZipLib::Checksums::Adler32, and ICSharpCode::SharpZipLib::Checksums::Crc32. |
|
Returns the data checksum computed so far.
Implemented in ICSharpCode::SharpZipLib::Checksums::Adler32, and ICSharpCode::SharpZipLib::Checksums::Crc32. Definition at line 54 of file IChecksum.cs. |