/* * CBC-MAC * (C) 1999-2007 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_CBC_MAC_H__ #define BOTAN_CBC_MAC_H__ #include #include namespace Botan { /** * CBC-MAC */ class BOTAN_DLL CBC_MAC : public MessageAuthenticationCode { public: std::string name() const; MessageAuthenticationCode* clone() const; size_t output_length() const { return m_cipher->block_size(); } void clear(); Key_Length_Specification key_spec() const { return m_cipher->key_spec(); } /** * @param cipher the underlying block cipher to use */ CBC_MAC(BlockCipher* cipher); static CBC_MAC* make(const Spec& spec); private: void add_data(const byte[], size_t); void final_result(byte[]); void key_schedule(const byte[], size_t); std::unique_ptr m_cipher; secure_vector m_state; size_t m_position = 0; }; } #endif