Module checksum
Available on crate feature
dep_symphonia
only.Expand description
The checksum
module provides implementations of common error-detecting codes and hashing
algorithms.
Structsยง
Crc8Ccitt
implements the CRC-8 algorithm using the CCITT polynominal.Crc32
implements the CRC-32 checksum algorithm using the standard polynomial.Crc16Ansi
implements the CRC-16 algorithm using the ANSI polynominal.Crc16AnsiLe
implements the CRC-16 algorithm using the ANSI polynominal in little-endian byte order.Md5
implements the MD5 hashing algorithm.