aboutsummaryrefslogtreecommitdiff
path: root/crypto/rsa/f
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/rsa/f')
-rw-r--r--crypto/rsa/f6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/rsa/f b/crypto/rsa/f
new file mode 100644
index 0000000..57528ef
--- /dev/null
+++ b/crypto/rsa/f
@@ -0,0 +1,6 @@
+ if ((rsa->method_mod_n == NULL) && (rsa->flags & RSA_FLAG_CACHE_PUBLIC))
+ {
+ if ((rsa->method_mod_n=(char *)BN_MONT_CTX_new()) != NULL)
+ if (!BN_MONT_CTX_set((BN_MONT_CTX *)rsa->method_mod_n,
+ rsa->n,ctx)) goto err;
+ }