From 9a78b3db5277dc83a12f3578a18edb9dd0252b41 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 3 Apr 2002 14:57:40 +0000 Subject: [PATCH] HW_aep was a little too constified for this version of OpenSSL. --- crypto/engine/hw_aep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/engine/hw_aep.c b/crypto/engine/hw_aep.c index b246860f5d..2a01e9d188 100644 --- a/crypto/engine/hw_aep.c +++ b/crypto/engine/hw_aep.c @@ -92,7 +92,7 @@ static AEP_RV aep_close_all_connections(int use_engine_lock, int *in_use); /* BIGNUM stuff */ static int aep_mod_exp(BIGNUM *r, BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx); -static AEP_RV aep_mod_exp_crt(BIGNUM *r, const BIGNUM *a, +static AEP_RV aep_mod_exp_crt(BIGNUM *r, BIGNUM *a, const BIGNUM *p, const BIGNUM *q, const BIGNUM *dmp1, const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx); @@ -535,7 +535,7 @@ static int aep_mod_exp(BIGNUM *r, BIGNUM *a, const BIGNUM *p, return to_return; } -static AEP_RV aep_mod_exp_crt(BIGNUM *r, const BIGNUM *a, +static AEP_RV aep_mod_exp_crt(BIGNUM *r, BIGNUM *a, const BIGNUM *p, const BIGNUM *q , const BIGNUM *dmp1,const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx) -- 2.25.1