aboutsummaryrefslogtreecommitdiffstats
path: root/src/checksum/crc24/crc24.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/checksum/crc24/crc24.h')
-rw-r--r--src/checksum/crc24/crc24.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/checksum/crc24/crc24.h b/src/checksum/crc24/crc24.h
deleted file mode 100644
index b5faebcee..000000000
--- a/src/checksum/crc24/crc24.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
-* 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