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)
30 void Update(
const byte *input,
size_t length);
33 CRYPTOPP_STATIC_CONSTEXPR
const char* StaticAlgorithmName() {
return "CRC32";}
36 void UpdateByte(byte b) {m_crc = m_tab[CRC32_INDEX(m_crc) ^ b] ^ CRC32_SHIFTED(m_crc);}
37 byte GetCrcByte(
size_t i)
const {
return reinterpret_cast<const byte *
>(&m_crc)[i];}
42 void Reset() {m_crc = CRC32_NEGL;}
45 static const word32 m_tab[256];
55 CRYPTOPP_CONSTANT(DIGESTSIZE = 4)
57 void Update(
const byte *input,
size_t length);
60 CRYPTOPP_STATIC_CONSTEXPR
const char* StaticAlgorithmName() {
return "CRC32C";}
63 void UpdateByte(byte b) {m_crc = m_tab[CRC32_INDEX(m_crc) ^ b] ^ CRC32_SHIFTED(m_crc);}
64 byte GetCrcByte(
size_t i)
const {
return reinterpret_cast<const byte *
>(&m_crc)[i];}
69 void Reset() {m_crc = CRC32_NEGL;}
72 static const word32 m_tab[256];
unsigned int DigestSize() const
Provides the digest size of the hash.
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.
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.