diff options
Diffstat (limited to 'src/core/pk_pad.h')
-rw-r--r-- | src/core/pk_pad.h | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/src/core/pk_pad.h b/src/core/pk_pad.h deleted file mode 100644 index ed1742155..000000000 --- a/src/core/pk_pad.h +++ /dev/null @@ -1,58 +0,0 @@ -/************************************************* -* EME/EMSA Classes Header File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ - -#ifndef BOTAN_PUBKEY_PAD_H__ -#define BOTAN_PUBKEY_PAD_H__ - -#include <botan/base.h> -#include <botan/rng.h> - -namespace Botan { - -/************************************************* -* Encoding Method for Encryption * -*************************************************/ -class BOTAN_DLL EME - { - public: - virtual u32bit maximum_input_size(u32bit) const = 0; - - SecureVector<byte> encode(const byte[], u32bit, u32bit, - RandomNumberGenerator&) const; - SecureVector<byte> encode(const MemoryRegion<byte>&, u32bit, - RandomNumberGenerator&) const; - - SecureVector<byte> decode(const byte[], u32bit, u32bit) const; - SecureVector<byte> decode(const MemoryRegion<byte>&, u32bit) const; - - virtual ~EME() {} - private: - virtual SecureVector<byte> pad(const byte[], u32bit, u32bit, - RandomNumberGenerator&) const = 0; - - virtual SecureVector<byte> unpad(const byte[], u32bit, u32bit) const = 0; - }; - -/************************************************* -* Encoding Method for Signatures, Appendix * -*************************************************/ -class BOTAN_DLL EMSA - { - public: - virtual void update(const byte[], u32bit) = 0; - virtual SecureVector<byte> raw_data() = 0; - - virtual SecureVector<byte> encoding_of(const MemoryRegion<byte>&, - u32bit, - RandomNumberGenerator& rng) = 0; - - virtual bool verify(const MemoryRegion<byte>&, const MemoryRegion<byte>&, - u32bit) throw() = 0; - virtual ~EMSA() {} - }; - -} - -#endif |