aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/rw/rw.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-05 16:33:54 +0000
committerlloyd <[email protected]>2010-03-05 16:33:54 +0000
commitce88e2c6918bb012321e1d7599c2a13b9ba9301e (patch)
treea87a57844f494a9b9ea6022b655f28a0c031a6ab /src/pubkey/rw/rw.h
parent284cae08b24ae892ee8ce5c3511acbf0b7688a43 (diff)
Remove sign and verify ops from key types
Diffstat (limited to 'src/pubkey/rw/rw.h')
-rw-r--r--src/pubkey/rw/rw.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pubkey/rw/rw.h b/src/pubkey/rw/rw.h
index 688e1db7f..232051862 100644
--- a/src/pubkey/rw/rw.h
+++ b/src/pubkey/rw/rw.h
@@ -21,8 +21,6 @@ class BOTAN_DLL RW_PublicKey : public PK_Verifying_with_MR_Key,
public:
std::string algo_name() const { return "RW"; }
- SecureVector<byte> verify(const byte[], u32bit) const;
-
RW_PublicKey(const AlgorithmIdentifier& alg_id,
const MemoryRegion<byte>& key_bits) :
IF_Scheme_PublicKey(alg_id, key_bits)
@@ -38,7 +36,6 @@ class BOTAN_DLL RW_PublicKey : public PK_Verifying_with_MR_Key,
protected:
RW_PublicKey() {}
- BigInt public_op(const BigInt&) const;
};
/*
@@ -63,9 +60,6 @@ class BOTAN_DLL RW_PrivateKey : public RW_PublicKey,
RW_PrivateKey(RandomNumberGenerator& rng, u32bit bits, u32bit = 2);
bool check_key(RandomNumberGenerator& rng, bool) const;
-
- SecureVector<byte> sign(const byte[], u32bit,
- RandomNumberGenerator& rng) const;
};
class BOTAN_DLL RW_Signature_Operation : public PK_Ops::Signature