aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mac/cmac/cmac.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 /lib/mac/cmac/cmac.h
parent62faac373c07cfe10bc8c309e89ebdd30d8e5eaa (diff)
Shuffle things around. Add NIST X.509 test to build.
Diffstat (limited to 'lib/mac/cmac/cmac.h')
-rw-r--r--lib/mac/cmac/cmac.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/lib/mac/cmac/cmac.h b/lib/mac/cmac/cmac.h
new file mode 100644
index 000000000..c1b75cfa5
--- /dev/null
+++ b/lib/mac/cmac/cmac.h
@@ -0,0 +1,63 @@
+/*
+* CMAC
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_CMAC_H__
+#define BOTAN_CMAC_H__
+
+#include <botan/mac.h>
+#include <botan/block_cipher.h>
+
+namespace Botan {
+
+/**
+* CMAC, also known as OMAC1
+*/
+class BOTAN_DLL CMAC : public MessageAuthenticationCode
+ {
+ public:
+ std::string name() const;
+ size_t output_length() const { return e->block_size(); }
+ MessageAuthenticationCode* clone() const;
+
+ void clear();
+
+ Key_Length_Specification key_spec() const
+ {
+ return e->key_spec();
+ }
+
+ /**
+ * CMAC's polynomial doubling operation
+ * @param in the input
+ * @param polynomial the byte value of the polynomial
+ */
+ static secure_vector<byte> poly_double(const secure_vector<byte>& in,
+ byte polynomial);
+
+ /**
+ * @param cipher the underlying block cipher to use
+ */
+ CMAC(BlockCipher* cipher);
+
+ CMAC(const CMAC&) = delete;
+ CMAC& operator=(const CMAC&) = delete;
+
+ ~CMAC();
+ private:
+ void add_data(const byte[], size_t);
+ void final_result(byte[]);
+ void key_schedule(const byte[], size_t);
+
+ BlockCipher* e;
+ secure_vector<byte> buffer, state, B, P;
+ size_t position;
+ byte polynomial;
+ };
+
+}
+
+#endif