/* * EMSA1 * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_EMSA1_H__ #define BOTAN_EMSA1_H__ #include #include namespace Botan { /* * EMSA1 */ class BOTAN_DLL EMSA1 : public EMSA { public: EMSA1(HashFunction* h) : hash(h) {} ~EMSA1() { delete hash; } protected: const HashFunction* hash_ptr() const { return hash; } private: void update(const byte[], u32bit); SecureVector raw_data(); SecureVector encoding_of(const MemoryRegion&, u32bit, RandomNumberGenerator& rng); bool verify(const MemoryRegion&, const MemoryRegion&, u32bit) throw(); HashFunction* hash; }; } #endif