6 #ifndef CRYPTOPP_CRC32_H 7 #define CRYPTOPP_CRC32_H 13 const word32 CRC32_NEGL = 0xffffffffL;
15 #if (CRYPTOPP_LITTLE_ENDIAN) 16 #define CRC32_INDEX(c) (c & 0xff) 17 #define CRC32_SHIFTED(c) (c >> 8) 19 #define CRC32_INDEX(c) (c >> 24) 20 #define CRC32_SHIFTED(c) (c << 8) 28 CRYPTOPP_CONSTANT(DIGESTSIZE = 4);
33 CRYPTOPP_STATIC_CONSTEXPR
const char* StaticAlgorithmName() {
return "CRC32";}
38 void UpdateByte(
byte b) {m_crc = m_tab[CRC32_INDEX(m_crc) ^ b] ^ CRC32_SHIFTED(m_crc);}
48 void Reset() {m_crc = CRC32_NEGL;}
51 static const word32 m_tab[256];
61 CRYPTOPP_CONSTANT(DIGESTSIZE = 4);
66 CRYPTOPP_STATIC_CONSTEXPR
const char* StaticAlgorithmName() {
return "CRC32C";}
71 void UpdateByte(
byte b) {m_crc = m_tab[CRC32_INDEX(m_crc) ^ b] ^ CRC32_SHIFTED(m_crc);}
81 void Reset() {m_crc = CRC32_NEGL;}
84 static const word32 m_tab[256];
byte GetCrcByte(size_t i) const
Retrieves the i-th byte of the CRC.
void UpdateByte(byte b)
Updates a CRC with additional input.
byte GetCrcByte(size_t i) const
Retrieves the i-th byte of the CRC.
unsigned int DigestSize() const
Provides the digest size of the hash.
unsigned int word32
32-bit unsigned datatype
unsigned int DigestSize() const
Provides the digest size of the hash.
Abstract base classes that provide a uniform interface to this library.
void TruncatedFinal(byte *hash, size_t size)
Computes the hash of the current message.
std::string AlgorithmName() const
Provides the name of this algorithm.
void Update(const byte *input, size_t length)
Updates a hash with additional input.
void TruncatedFinal(byte *hash, size_t size)
Computes the hash of the current message.
std::string AlgorithmProvider() const
Retrieve the provider of this algorithm.
void Update(const byte *input, size_t length)
Updates a hash with additional input.
unsigned char byte
8-bit unsigned datatype
void UpdateByte(byte b)
Updates a CRC with additional input.
std::string AlgorithmName() const
Provides the name of this algorithm.
Crypto++ library namespace.
std::string AlgorithmProvider() const
Retrieve the provider of this algorithm.
CRC-32C Checksum Calculation.
CRC-32 Checksum Calculation.