diff options
author | lloyd <[email protected]> | 2010-03-04 17:44:07 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-04 17:44:07 +0000 |
commit | 19853ce387c62b220b90019674251b334b823823 (patch) | |
tree | 5137d8be0eb07a3d56e1740add1b8aad33d4f904 /src/pubkey/rw/rw.h | |
parent | 788e524d35d01d90c56c825dbf63a96c3c42a32c (diff) |
Remove IF_Scheme_PrivateKey::PKCS8_load_hook
Diffstat (limited to 'src/pubkey/rw/rw.h')
-rw-r--r-- | src/pubkey/rw/rw.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/pubkey/rw/rw.h b/src/pubkey/rw/rw.h index d2411d630..efdca04e7 100644 --- a/src/pubkey/rw/rw.h +++ b/src/pubkey/rw/rw.h @@ -57,10 +57,7 @@ class BOTAN_DLL RW_PrivateKey : public RW_PublicKey, RW_PrivateKey(const AlgorithmIdentifier& alg_id, const MemoryRegion<byte>& key_bits, RandomNumberGenerator& rng) : - IF_Scheme_PrivateKey(alg_id, key_bits) - { - PKCS8_load_hook(rng); - } + IF_Scheme_PrivateKey(rng, alg_id, key_bits) {} RW_PrivateKey(RandomNumberGenerator& rng, const BigInt& p, const BigInt& q, |