/************************************************* * EME Header File * * (C) 1999-2007 The Botan Project * *************************************************/ #ifndef BOTAN_EME_H__ #define BOTAN_EME_H__ #include namespace Botan { /************************************************* * EME1 * *************************************************/ class EME1 : public EME { public: u32bit maximum_input_size(u32bit) const; EME1(const std::string&, const std::string&, const std::string& = ""); ~EME1() { delete mgf; } private: SecureVector pad(const byte[], u32bit, u32bit) const; SecureVector unpad(const byte[], u32bit, u32bit) const; const u32bit HASH_LENGTH; SecureVector Phash; MGF* mgf; }; /************************************************* * EME_PKCS1v15 * *************************************************/ class EME_PKCS1v15 : public EME { public: u32bit maximum_input_size(u32bit) const; private: SecureVector pad(const byte[], u32bit, u32bit) const; SecureVector unpad(const byte[], u32bit, u32bit) const; }; } #endif