summaryrefslogtreecommitdiffstats
path: root/engines/e_nuron.c
diff options
context:
space:
mode:
Diffstat (limited to 'engines/e_nuron.c')
-rw-r--r--engines/e_nuron.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/e_nuron.c b/engines/e_nuron.c
index e3a9406c49..4df6f0495a 100644
--- a/engines/e_nuron.c
+++ b/engines/e_nuron.c
@@ -192,9 +192,9 @@ static int nuron_mod_exp(BIGNUM *r,const BIGNUM *a,const BIGNUM *p,
}
#ifndef OPENSSL_NO_RSA
-static int nuron_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa)
+static int nuron_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
{
- return nuron_mod_exp(r0,I,rsa->d,rsa->n,NULL);
+ return nuron_mod_exp(r0,I,rsa->d,rsa->n,ctx);
}
#endif