diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2010-03-03 16:30:42 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2010-03-03 16:30:42 +0100 |
commit | 2c772c87003fd941f2c536672921160c21b77964 (patch) | |
tree | 8e8760baf19ca3ee3621e401fd5b6431c0ddca8a /crypto/engine | |
parent | Initial version of Galois Counter Mode implementation. Interface is still (diff) | |
download | openssl-2c772c87003fd941f2c536672921160c21b77964.tar.xz openssl-2c772c87003fd941f2c536672921160c21b77964.zip |
don't mix definitions and code
Diffstat (limited to 'crypto/engine')
-rw-r--r-- | crypto/engine/eng_cryptodev.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c index b068c21cc5..52f4ca3901 100644 --- a/crypto/engine/eng_cryptodev.c +++ b/crypto/engine/eng_cryptodev.c @@ -1018,13 +1018,13 @@ cryptodev_bn_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, kop.crk_iparams = 3; if (cryptodev_asym(&kop, BN_num_bytes(m), r, 0, NULL)) { - printf("OCF asym process failed, Running in software\n"); const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); + printf("OCF asym process failed, Running in software\n"); ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont); } else if (ECANCELED == kop.crk_status) { - printf("OCF hardware operation cancelled. Running in Software\n"); const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); + printf("OCF hardware operation cancelled. Running in Software\n"); ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont); } /* else cryptodev operation worked ok ==> ret = 1*/ @@ -1073,13 +1073,13 @@ cryptodev_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx) kop.crk_iparams = 6; if (cryptodev_asym(&kop, BN_num_bytes(rsa->n), r0, 0, NULL)) { - printf("OCF asym process failed, running in Software\n"); const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); + printf("OCF asym process failed, running in Software\n"); ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx); } else if (ECANCELED == kop.crk_status) { - printf("OCF hardware operation cancelled. Running in Software\n"); const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); + printf("OCF hardware operation cancelled. Running in Software\n"); ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx); } /* else cryptodev operation worked ok ==> ret = 1*/ |