summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2004-03-25 02:55:17 +0000
committerGeoff Thorpe <geoff@openssl.org>2004-03-25 02:55:17 +0000
commitea77fc33807c9fc66f10c9d6f5176f4df1adb631 (patch)
tree4e6dbcdc36132cf7a04168422a2d7389e7d2070a /engines
parent46ef873f0b3c04b6415cddac5d4a7b27b53cc482 (diff)
... and this should likewise fix up those RSA implementations that weren't
already built and tested.
Diffstat (limited to 'engines')
-rw-r--r--engines/e_gmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/e_gmp.c b/engines/e_gmp.c
index 64cb039ed8..39da65f74b 100644
--- a/engines/e_gmp.c
+++ b/engines/e_gmp.c
@@ -101,7 +101,7 @@ static int e_gmp_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void));
#ifndef OPENSSL_NO_RSA
/* RSA stuff */
-static int e_gmp_rsa_mod_exp(BIGNUM *r, const BIGNUM *I, RSA *rsa);
+static int e_gmp_rsa_mod_exp(BIGNUM *r, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
static int e_gmp_rsa_finish(RSA *r);
#endif
@@ -361,7 +361,7 @@ static int e_gmp_rsa_finish(RSA *rsa)
return 1;
}
-static int e_gmp_rsa_mod_exp(BIGNUM *r, const BIGNUM *I, RSA *rsa)
+static int e_gmp_rsa_mod_exp(BIGNUM *r, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
{
E_GMP_RSA_CTX *hptr;
int to_return = 0;