/************************************************* * CMAC Header File * * (C) 1999-2006 The Botan Project * *************************************************/ #ifndef BOTAN_CMAC_H__ #define BOTAN_CMAC_H__ #include namespace Botan { /************************************************* * CMAC * *************************************************/ class CMAC : public MessageAuthenticationCode { public: void clear() throw(); std::string name() const; MessageAuthenticationCode* clone() const; CMAC(const std::string&); ~CMAC() { delete e; } private: void add_data(const byte[], u32bit); void final_result(byte[]); void key(const byte[], u32bit); BlockCipher* e; SecureVector buffer, state, B, P; u32bit position; byte polynomial; }; } #endif