diff options
Diffstat (limited to 'src/lib/checksum/crc24/crc24.h')
-rw-r--r-- | src/lib/checksum/crc24/crc24.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/lib/checksum/crc24/crc24.h b/src/lib/checksum/crc24/crc24.h new file mode 100644 index 000000000..b5faebcee --- /dev/null +++ b/src/lib/checksum/crc24/crc24.h @@ -0,0 +1,37 @@ +/* +* CRC24 +* (C) 1999-2007 Jack Lloyd +* +* Distributed under the terms of the Botan license +*/ + +#ifndef BOTAN_CRC24_H__ +#define BOTAN_CRC24_H__ + +#include <botan/hash.h> + +namespace Botan { + +/** +* 24-bit cyclic redundancy check +*/ +class BOTAN_DLL CRC24 : public HashFunction + { + public: + std::string name() const { return "CRC24"; } + size_t output_length() const { return 3; } + HashFunction* clone() const { return new CRC24; } + + void clear() { crc = 0xB704CE; } + + CRC24() { clear(); } + ~CRC24() { clear(); } + private: + void add_data(const byte[], size_t); + void final_result(byte[]); + u32bit crc; + }; + +} + +#endif |