aboutsummaryrefslogtreecommitdiffstats
path: root/src/checksum/crc24/crc24.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-01-01 21:20:55 +0000
committerlloyd <[email protected]>2014-01-01 21:20:55 +0000
commit197dc467dec28a04c3b2f30da7cef122dfbb13e9 (patch)
treecdbd3ddaec051c72f0a757db461973d90c37b97a /src/checksum/crc24/crc24.h
parent62faac373c07cfe10bc8c309e89ebdd30d8e5eaa (diff)
Shuffle things around. Add NIST X.509 test to build.
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