Predefined standards for CRC algorithms.

Namespace: LLCryptoLib.Hash
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public enum CRCStandard
Visual Basic
Public Enumeration CRCStandard
Visual C++
public enum class CRCStandard

Members

Member nameValueDescription
CRC80The standard CRC8 algorithm.
CRC16_IBM1The IBM standard CRC16 algorithm.
CRC16_CCITT2The CCITT standard CRC16 algorithm. Used in things such as X.25, SDLC, and HDLC.
CRC16_ARC3A variation on the CRC16 algorithm. Used in ARC.
CRC16_XMODEM4A variation on the CRC16 algorithm. Used in XMODEM.
CRC16_ZMODEM5A variation on the CRC16 algorithm. Used in ZMODEM.
CRC246The standard CRC24 algorithm. Used in things such as PGP.
CRC327The standard CRC32 algorithm. Used in things such as PKZip, SFV, AUTODIN II, Ethernet, and FDDI.
CRC32_JAMCRC8A variation on the CRC32 algorithm. Used in JAMCRC.
CRC32_BZIP29A variation on the CRC32 algorithm. Used in BZip2.
CRC64_ISO10The ISO standard CRC64 algorithm.
CRC64_ECMA11The ECMA standard CRC64 algorithm.

See Also