diff options
author | lloyd <[email protected]> | 2010-03-04 04:05:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-04 04:05:16 +0000 |
commit | 280ed6b255770be9608acbf3afa3e14f5824778a (patch) | |
tree | b5d0fce7f01ca6990299a59dd8cadf16b3b382b1 /src/pubkey/if_algo | |
parent | ea2b48cca1ef37815742577bfd692397bdcf8d13 (diff) |
Remove more load hooks
Diffstat (limited to 'src/pubkey/if_algo')
-rw-r--r-- | src/pubkey/if_algo/if_algo.cpp | 8 | ||||
-rw-r--r-- | src/pubkey/if_algo/if_algo.h | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/pubkey/if_algo/if_algo.cpp b/src/pubkey/if_algo/if_algo.cpp index a68a38ce7..e0042fc1a 100644 --- a/src/pubkey/if_algo/if_algo.cpp +++ b/src/pubkey/if_algo/if_algo.cpp @@ -79,14 +79,6 @@ IF_Scheme_PrivateKey::IF_Scheme_PrivateKey(const AlgorithmIdentifier&, } /* -* Algorithm Specific X.509 Initialization Code -*/ -void IF_Scheme_PublicKey::X509_load_hook() - { - core = IF_Core(e, n); - } - -/* * Algorithm Specific PKCS #8 Initialization Code */ void IF_Scheme_PrivateKey::PKCS8_load_hook(RandomNumberGenerator& rng, diff --git a/src/pubkey/if_algo/if_algo.h b/src/pubkey/if_algo/if_algo.h index d2fb7809d..d5e3ce5b3 100644 --- a/src/pubkey/if_algo/if_algo.h +++ b/src/pubkey/if_algo/if_algo.h @@ -47,7 +47,6 @@ class BOTAN_DLL IF_Scheme_PublicKey : public virtual Public_Key protected: IF_Scheme_PublicKey() {} - virtual void X509_load_hook(); BigInt n, e; IF_Core core; }; |