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/if_algo/if_algo.h | |
parent | 788e524d35d01d90c56c825dbf63a96c3c42a32c (diff) |
Remove IF_Scheme_PrivateKey::PKCS8_load_hook
Diffstat (limited to 'src/pubkey/if_algo/if_algo.h')
-rw-r--r-- | src/pubkey/if_algo/if_algo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pubkey/if_algo/if_algo.h b/src/pubkey/if_algo/if_algo.h index 01e370854..cbcdb9c5c 100644 --- a/src/pubkey/if_algo/if_algo.h +++ b/src/pubkey/if_algo/if_algo.h @@ -68,7 +68,8 @@ class BOTAN_DLL IF_Scheme_PrivateKey : public virtual IF_Scheme_PublicKey, const BigInt& exp, const BigInt& d_exp, const BigInt& mod); - IF_Scheme_PrivateKey(const AlgorithmIdentifier& alg_id, + IF_Scheme_PrivateKey(RandomNumberGenerator& rng, + const AlgorithmIdentifier& alg_id, const MemoryRegion<byte>& key_bits); bool check_key(RandomNumberGenerator& rng, bool) const; @@ -96,7 +97,6 @@ class BOTAN_DLL IF_Scheme_PrivateKey : public virtual IF_Scheme_PublicKey, protected: IF_Scheme_PrivateKey() {} - void PKCS8_load_hook(RandomNumberGenerator&, bool = false); BigInt d, p, q, d1, d2, c; }; |