aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-09 14:17:23 +0000
committerlloyd <[email protected]>2010-03-09 14:17:23 +0000
commit80a3459993c6b4531617f5c4f8b32cbe98d15529 (patch)
tree01036b74f93342eede603f7f0b393b95231ee170 /src/pubkey
parent358769448aae3200da3d56055d253f63a02be6bf (diff)
Remove decls of removed RSA encrypt/decrypt
Diffstat (limited to 'src/pubkey')
-rw-r--r--src/pubkey/rsa/rsa.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/pubkey/rsa/rsa.h b/src/pubkey/rsa/rsa.h
index 72cd80fef..7d517e986 100644
--- a/src/pubkey/rsa/rsa.h
+++ b/src/pubkey/rsa/rsa.h
@@ -22,9 +22,6 @@ class BOTAN_DLL RSA_PublicKey : public virtual IF_Scheme_PublicKey
public:
std::string algo_name() const { return "RSA"; }
- SecureVector<byte> encrypt(const byte[], u32bit,
- RandomNumberGenerator& rng) const;
-
RSA_PublicKey(const AlgorithmIdentifier& alg_id,
const MemoryRegion<byte>& key_bits) :
IF_Scheme_PublicKey(alg_id, key_bits)
@@ -50,8 +47,6 @@ class BOTAN_DLL RSA_PrivateKey : public RSA_PublicKey,
public IF_Scheme_PrivateKey
{
public:
- SecureVector<byte> decrypt(const byte[], u32bit) const;
-
bool check_key(RandomNumberGenerator& rng, bool) const;
RSA_PrivateKey(const AlgorithmIdentifier& alg_id,