diff options
author | lloyd <[email protected]> | 2010-03-05 16:33:54 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-05 16:33:54 +0000 |
commit | ce88e2c6918bb012321e1d7599c2a13b9ba9301e (patch) | |
tree | a87a57844f494a9b9ea6022b655f28a0c031a6ab /src/pubkey/rsa/rsa.h | |
parent | 284cae08b24ae892ee8ce5c3511acbf0b7688a43 (diff) |
Remove sign and verify ops from key types
Diffstat (limited to 'src/pubkey/rsa/rsa.h')
-rw-r--r-- | src/pubkey/rsa/rsa.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pubkey/rsa/rsa.h b/src/pubkey/rsa/rsa.h index 43abf2a09..c62616cdc 100644 --- a/src/pubkey/rsa/rsa.h +++ b/src/pubkey/rsa/rsa.h @@ -25,8 +25,6 @@ class BOTAN_DLL RSA_PublicKey : public PK_Encrypting_Key, SecureVector<byte> encrypt(const byte[], u32bit, RandomNumberGenerator& rng) const; - SecureVector<byte> verify(const byte[], u32bit) const; - RSA_PublicKey(const AlgorithmIdentifier& alg_id, const MemoryRegion<byte>& key_bits) : IF_Scheme_PublicKey(alg_id, key_bits) |