diff options
Diffstat (limited to 'src/mac/x919_mac')
-rw-r--r-- | src/mac/x919_mac/x919_mac.cpp | 25 | ||||
-rw-r--r-- | src/mac/x919_mac/x919_mac.h | 8 |
2 files changed, 24 insertions, 9 deletions
diff --git a/src/mac/x919_mac/x919_mac.cpp b/src/mac/x919_mac/x919_mac.cpp index 92ec7b7b8..5e03b2e6c 100644 --- a/src/mac/x919_mac/x919_mac.cpp +++ b/src/mac/x919_mac/x919_mac.cpp @@ -4,7 +4,6 @@ *************************************************/ #include <botan/x919_mac.h> -#include <botan/lookup.h> #include <botan/xor_buf.h> #include <algorithm> @@ -70,19 +69,33 @@ void ANSI_X919_MAC::clear() throw() position = 0; } +std::string ANSI_X919_MAC::name() const + { + return "X9.19-MAC"; + } + +MessageAuthenticationCode* ANSI_X919_MAC::clone() const + { + return new ANSI_X919_MAC(e->clone()); + } + /************************************************* * ANSI X9.19 MAC Constructor * *************************************************/ -ANSI_X919_MAC::ANSI_X919_MAC() : MessageAuthenticationCode(8, 8, 16, 8) +ANSI_X919_MAC::ANSI_X919_MAC(BlockCipher* e_in) : + MessageAuthenticationCode(e_in->BLOCK_SIZE, + e_in->MINIMUM_KEYLENGTH, + 2*e_in->MAXIMUM_KEYLENGTH, + 2*e_in->KEYLENGTH_MULTIPLE), + e(e_in), d(e->clone()), position(0) { - e = get_block_cipher("DES"); - d = get_block_cipher("DES"); - position = 0; + if(e->name() != "DES") + throw Invalid_Argument("ANSI X9.19 MAC only supports DES"); } /************************************************* * ANSI X9.19 MAC Destructor * -*************************************************/ +le*************************************************/ ANSI_X919_MAC::~ANSI_X919_MAC() { delete e; diff --git a/src/mac/x919_mac/x919_mac.h b/src/mac/x919_mac/x919_mac.h index bedb2cf58..4909e554a 100644 --- a/src/mac/x919_mac/x919_mac.h +++ b/src/mac/x919_mac/x919_mac.h @@ -17,14 +17,16 @@ class BOTAN_DLL ANSI_X919_MAC : public MessageAuthenticationCode { public: void clear() throw(); - std::string name() const { return "X9.19-MAC"; } - MessageAuthenticationCode* clone() const { return new ANSI_X919_MAC; } - ANSI_X919_MAC(); + std::string name() const; + MessageAuthenticationCode* clone() const; + + ANSI_X919_MAC(BlockCipher*); ~ANSI_X919_MAC(); private: void add_data(const byte[], u32bit); void final_result(byte[]); void key(const byte[], u32bit); + BlockCipher* e; BlockCipher* d; SecureBuffer<byte, 8> state; |