DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] openssl: fix bad reference of modinv
@ 2019-02-05  9:13 Arek Kusztal
  2019-02-05 16:54 ` Trahe, Fiona
  2019-02-06  5:11 ` [dpdk-dev] [EXT] " Shally Verma
  0 siblings, 2 replies; 4+ messages in thread
From: Arek Kusztal @ 2019-02-05  9:13 UTC (permalink / raw)
  To: dev; +Cc: sunila.sahu, akhil.goyal, shally.verma, ashish.gupta, Arek Kusztal

Fixes bad reference of modinv struct in openssl pmd

Fixes: 3e9d6bd447fb ("crypto/openssl: add RSA and mod asym operations")

Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
---
 drivers/crypto/openssl/rte_openssl_pmd.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/crypto/openssl/rte_openssl_pmd.c b/drivers/crypto/openssl/rte_openssl_pmd.c
index ea5aac6..0230050 100644
--- a/drivers/crypto/openssl/rte_openssl_pmd.c
+++ b/drivers/crypto/openssl/rte_openssl_pmd.c
@@ -1814,12 +1814,12 @@ process_openssl_modexp_op(struct rte_crypto_op *cop,
 		return -1;
 	}
 
-	base = BN_bin2bn((const unsigned char *)op->modinv.base.data,
-			op->modinv.base.length, base);
+	base = BN_bin2bn((const unsigned char *)op->modex.base.data,
+			op->modex.base.length, base);
 
 	if (BN_mod_exp(res, base, sess->u.e.exp,
 				sess->u.e.mod, sess->u.e.ctx)) {
-		op->modinv.base.length = BN_bn2bin(res, op->modinv.base.data);
+		op->modex.base.length = BN_bn2bin(res, op->modex.base.data);
 		cop->status = RTE_CRYPTO_OP_STATUS_SUCCESS;
 	} else {
 		cop->status = RTE_CRYPTO_OP_STATUS_ERROR;
-- 
2.1.0

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-03-06 16:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-05  9:13 [dpdk-dev] [PATCH] openssl: fix bad reference of modinv Arek Kusztal
2019-02-05 16:54 ` Trahe, Fiona
2019-03-06 16:41   ` Akhil Goyal
2019-02-06  5:11 ` [dpdk-dev] [EXT] " Shally Verma

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).