/* * EME PKCS#1 v1.5 * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_EME_PKCS1_H__ #define BOTAN_EME_PKCS1_H__ #include namespace Botan { /* * EME_PKCS1v15 */ class BOTAN_DLL EME_PKCS1v15 : public EME { public: u32bit maximum_input_size(u32bit) const; private: SecureVector pad(const byte[], u32bit, u32bit, RandomNumberGenerator&) const; SecureVector unpad(const byte[], u32bit, u32bit) const; }; } #endif