/* * CMAC * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_CMAC_H__ #define BOTAN_CMAC_H__ #include #include namespace Botan { /* * CMAC */ class BOTAN_DLL CMAC : public MessageAuthenticationCode { public: void clear() throw(); std::string name() const; MessageAuthenticationCode* clone() const; static SecureVector poly_double(const MemoryRegion& in, byte polynomial); CMAC(BlockCipher* e); ~CMAC(); private: void add_data(const byte[], u32bit); void final_result(byte[]); void key_schedule(const byte[], u32bit); BlockCipher* e; SecureVector buffer, state, B, P; u32bit position; byte polynomial; }; } #endif