|
Fingerprint_Card
|
Bzip2 checksum algorithm. More...


Public Member Functions | |
| StrangeCRC () | |
| Initialise a default instance of StrangeCRC | |
| void | Reset () |
| Reset the state of Crc. | |
| void | Update (int value) |
| Update the Crc value. | |
| void | Update (byte[] buffer) |
| Update Crc based on a block of data. | |
| void | Update (byte[] buffer, int offset, int count) |
| Update Crc based on a portion of a block of data. | |
Properties | |
| long | Value [get] |
| Get the current Crc value. | |
Private Attributes | |
| int | globalCrc |
Static Private Attributes | |
| static readonly uint[] | crc32Table |
Bzip2 checksum algorithm.
| ICSharpCode.SharpZipLib.Checksums.StrangeCRC.StrangeCRC | ( | ) |
| void ICSharpCode.SharpZipLib.Checksums.StrangeCRC.Reset | ( | ) |
Reset the state of Crc.
Implements ICSharpCode.SharpZipLib.Checksums.IChecksum.

| void ICSharpCode.SharpZipLib.Checksums.StrangeCRC.Update | ( | byte[] | buffer | ) |
Update Crc based on a block of data.
| buffer | The buffer containing data to update the crc with. |
Implements ICSharpCode.SharpZipLib.Checksums.IChecksum.

| void ICSharpCode.SharpZipLib.Checksums.StrangeCRC.Update | ( | byte[] | buffer, |
| int | offset, | ||
| int | count ) |
Update Crc based on a portion of a block of data.
| buffer | block of data |
| offset | index of first byte to use |
| count | number of bytes to use |
Implements ICSharpCode.SharpZipLib.Checksums.IChecksum.

| void ICSharpCode.SharpZipLib.Checksums.StrangeCRC.Update | ( | int | value | ) |
Update the Crc value.
| value | data update is based on |
Implements ICSharpCode.SharpZipLib.Checksums.IChecksum.

|
staticprivate |
|
private |
|
get |
Get the current Crc value.
Implements ICSharpCode.SharpZipLib.Checksums.IChecksum.