/************************************************* * EMSA-Raw Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_EMSA_RAW_H__ #define BOTAN_EMSA_RAW_H__ #include namespace Botan { /************************************************* * EMSA-Raw * *************************************************/ class BOTAN_DLL EMSA_Raw : public EMSA { private: void update(const byte[], u32bit); SecureVector raw_data(); SecureVector encoding_of(const MemoryRegion&, u32bit, RandomNumberGenerator&); bool verify(const MemoryRegion&, const MemoryRegion&, u32bit) throw(); SecureVector message; }; } #endif