Class Utility.CRC32
Inheritance
System.Object
Utility.CRC32
Namespace: ExifLibrary
Assembly: ExifLibrary.dll
Syntax
public static class CRC32
Methods
| Improve this Doc View SourceCRC(Byte[])
Return the CRC of the given bytes.
Declaration
public static ulong CRC(byte[] buffer)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Byte[] | buffer |
Returns
| Type | Description |
|---|---|
| System.UInt64 | CRC checksum. |
Hash(UInt64, Byte[])
Return the CRC of the given bytes.
Declaration
public static ulong Hash(ulong crc, byte[] buffer)
Parameters
| Type | Name | Description |
|---|---|---|
| System.UInt64 | crc | Initial CRC. |
| System.Byte[] | buffer |
Returns
| Type | Description |
|---|---|
| System.UInt64 | CRC checksum. |