From 192060947c8fc9ec53f821b2c6f7ebce7b929ac9 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 3 Apr 2002 13:52:51 +0000 Subject: [PATCH] A couple of typos. Discovered and submitted by Diarmuid O'Neill --- crypto/engine/hw_aep.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/crypto/engine/hw_aep.c b/crypto/engine/hw_aep.c index c7255b7f09..b246860f5d 100644 --- a/crypto/engine/hw_aep.c +++ b/crypto/engine/hw_aep.c @@ -602,7 +602,6 @@ static AEP_RV aep_mod_exp_crt(BIGNUM *r, const BIGNUM *a, err: return rv; } -#endif #ifdef AEPRAND static int aep_rand(unsigned char *buf,int len ) @@ -701,13 +700,7 @@ static int aep_rsa_mod_exp(BIGNUM *r0, BIGNUM *I, RSA *rsa) if (rsa->q && rsa->dmp1 && rsa->dmq1 && rsa->iqmp) { rv = aep_mod_exp_crt(r0,I,rsa->p,rsa->q, rsa->dmp1,rsa->dmq1,rsa->iqmp,ctx); - if (rv == FAIL_TO_SW) - { - const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); - to_return = (*meth->rsa_mod_exp)(r0, I, rsa); - goto err; - } - else if (rv != AEP_R_OK) + if (rv != AEP_R_OK) goto err; } else -- 2.25.1