aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/rsa/rsa.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-04 04:05:16 +0000
committerlloyd <[email protected]>2010-03-04 04:05:16 +0000
commit280ed6b255770be9608acbf3afa3e14f5824778a (patch)
treeb5d0fce7f01ca6990299a59dd8cadf16b3b382b1 /src/pubkey/rsa/rsa.cpp
parentea2b48cca1ef37815742577bfd692397bdcf8d13 (diff)
Remove more load hooks
Diffstat (limited to 'src/pubkey/rsa/rsa.cpp')
-rw-r--r--src/pubkey/rsa/rsa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey/rsa/rsa.cpp b/src/pubkey/rsa/rsa.cpp
index 83e6e1b17..33999f1cd 100644
--- a/src/pubkey/rsa/rsa.cpp
+++ b/src/pubkey/rsa/rsa.cpp
@@ -20,7 +20,7 @@ RSA_PublicKey::RSA_PublicKey(const BigInt& mod, const BigInt& exp)
{
n = mod;
e = exp;
- X509_load_hook();
+ core = IF_Core(e, n);
}
/*