diff options
author | lloyd <[email protected]> | 2010-03-05 17:40:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-05 17:40:45 +0000 |
commit | be9d7d1031bba2cd4f415d114389a1f50c61d44b (patch) | |
tree | c6714d8c40ac685c98e4b8bfbacdd14d99d64a63 /src/pubkey/rw/rw.h | |
parent | cdd1a1509ffc74c74bd902d55a7a85ab9e2afe78 (diff) |
Remove IF_Core
Diffstat (limited to 'src/pubkey/rw/rw.h')
-rw-r--r-- | src/pubkey/rw/rw.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/pubkey/rw/rw.h b/src/pubkey/rw/rw.h index 059ba7d48..7d614cf5a 100644 --- a/src/pubkey/rw/rw.h +++ b/src/pubkey/rw/rw.h @@ -9,6 +9,7 @@ #define BOTAN_RW_H__ #include <botan/if_algo.h> +#include <botan/reducer.h> namespace Botan { @@ -24,15 +25,11 @@ class BOTAN_DLL RW_PublicKey : public PK_Verifying_with_MR_Key, RW_PublicKey(const AlgorithmIdentifier& alg_id, const MemoryRegion<byte>& key_bits) : IF_Scheme_PublicKey(alg_id, key_bits) - { - core = IF_Core(e, n); - } + {} RW_PublicKey(const BigInt& mod, const BigInt& exponent) : IF_Scheme_PublicKey(mod, exponent) - { - core = IF_Core(e, n); - } + {} protected: RW_PublicKey() {} |