Std.Checksum
10 public declarations
- crc32
&Bytes -> UInt32The CRC-32 of the bytes, as zip, gzip, and PNG compute it.
- crc32c
&Bytes -> UInt32The CRC-32C (Castagnoli) of the bytes, as iSCSI, ext4, and many storage
- crc32cUpdate
UInt32 -> &Bytes -> UInt32A CRC-32C carried on over more bytes, as
crc32Updatedoes for CRC-32. - crc32Update
UInt32 -> &Bytes -> UInt32A CRC-32 carried on over more bytes, so a stream can be checked a chunk
- crc64
&Bytes -> UInt64The CRC-64 of the bytes with the ECMA-182 polynomial, reflected and
- crc64Update
UInt64 -> &Bytes -> UInt64A CRC-64 carried on over more bytes, as
crc32Updatedoes for CRC-32. - fnv1a32
&Bytes -> UInt32The 32-bit FNV-1a hash of the bytes.
- fnv1a64
&Bytes -> UInt64The 64-bit FNV-1a hash of the bytes.
- hex32
UInt32 -> StrA 32-bit checksum as eight lowercase hex digits, leading zeros kept, which
- hex64
UInt64 -> StrA 64-bit checksum as sixteen lowercase hex digits, leading zeros kept.
