Added RSA PWCT and KAT tests. Now it complies
with setup/teardown logic.

Signed-off-by: Arek Kusztal <arkadiuszx.kusz...@intel.com>
---
 app/test/test_cryptodev_asym.c             | 1050 ++++++--------------
 app/test/test_cryptodev_asym_util.h        |   10 -
 app/test/test_cryptodev_rsa_test_vectors.h |  600 ++++++-----
 3 files changed, 581 insertions(+), 1079 deletions(-)

diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c
index 7bdd7baa34..2c5a1120e9 100644
--- a/app/test/test_cryptodev_asym.c
+++ b/app/test/test_cryptodev_asym.c
@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: BSD-3-Clause
  * Copyright(c) 2018 Cavium Networks
- * Copyright (c) 2019 Intel Corporation
+ * Copyright (c) 2019-2023 Intel Corporation
  */
 
 #include <rte_bus_vdev.h>
@@ -62,741 +62,6 @@ struct test_cases_array {
 };
 static struct test_cases_array test_vector = {0, { NULL } };
 
-static uint32_t test_index;
-
-static int send(struct rte_crypto_op **op,
-               struct rte_crypto_op **result_op)
-{
-       int ticks = 0;
-
-       if (rte_cryptodev_enqueue_burst(params->valid_devs[0], 0,
-                       op, 1) != 1) {
-               RTE_LOG(ERR, USER1,
-                       "line %u FAILED: Error sending packet for operation on 
device %d",
-                       __LINE__, params->valid_devs[0]);
-               return TEST_FAILED;
-       }
-       while (rte_cryptodev_dequeue_burst(params->valid_devs[0], 0,
-                       result_op, 1) == 0) {
-               rte_delay_ms(1);
-               ticks++;
-               if (ticks >= DEQ_TIMEOUT) {
-                       RTE_LOG(ERR, USER1,
-                               "line %u FAILED: Cannot dequeue the crypto op 
on device %d",
-                               __LINE__, params->valid_devs[0]);
-                       return TEST_FAILED;
-               }
-       }
-       TEST_ASSERT_NOT_NULL(*result_op,
-                       "line %u FAILED: Failed to process asym crypto op",
-                       __LINE__);
-       TEST_ASSERT_SUCCESS((*result_op)->status,
-                       "line %u FAILED: Failed to process asym crypto op, 
error status received",
-                       __LINE__);
-       return TEST_SUCCESS;
-}
-
-static int
-queue_ops_rsa_sign_verify(void *sess)
-{
-       struct rte_mempool *op_mpool = params->op_mpool;
-       uint8_t dev_id = params->valid_devs[0];
-       struct rte_crypto_op *op, *result_op;
-       struct rte_crypto_asym_op *asym_op;
-       uint8_t output_buf[TEST_DATA_SIZE];
-       int status = TEST_SUCCESS;
-
-       /* Set up crypto op data structure */
-       op = rte_crypto_op_alloc(op_mpool, RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
-       if (!op) {
-               RTE_LOG(ERR, USER1, "Failed to allocate asymmetric crypto "
-                       "operation struct\n");
-               return TEST_FAILED;
-       }
-
-       asym_op = op->asym;
-
-       /* Compute sign on the test vector */
-       asym_op->rsa.op_type = RTE_CRYPTO_ASYM_OP_SIGN;
-
-       asym_op->rsa.message.data = rsaplaintext.data;
-       asym_op->rsa.message.length = rsaplaintext.len;
-       asym_op->rsa.sign.length = 0;
-       asym_op->rsa.sign.data = output_buf;
-       asym_op->rsa.padding.type = RTE_CRYPTO_RSA_PADDING_PKCS1_5;
-
-       debug_hexdump(stdout, "message", asym_op->rsa.message.data,
-                     asym_op->rsa.message.length);
-
-       /* Attach asymmetric crypto session to crypto operations */
-       rte_crypto_op_attach_asym_session(op, sess);
-
-       RTE_LOG(DEBUG, USER1, "Process ASYM operation\n");
-
-       /* Process crypto operation */
-       if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
-               RTE_LOG(ERR, USER1, "Error sending packet for sign\n");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
-               rte_pause();
-
-       if (result_op == NULL) {
-               RTE_LOG(ERR, USER1, "Failed to process sign op\n");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       debug_hexdump(stdout, "signed message", asym_op->rsa.sign.data,
-                     asym_op->rsa.sign.length);
-       asym_op = result_op->asym;
-
-       /* Verify sign */
-       asym_op->rsa.op_type = RTE_CRYPTO_ASYM_OP_VERIFY;
-       asym_op->rsa.padding.type = RTE_CRYPTO_RSA_PADDING_PKCS1_5;
-
-       /* Process crypto operation */
-       if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
-               RTE_LOG(ERR, USER1, "Error sending packet for verify\n");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
-               rte_pause();
-
-       if (result_op == NULL) {
-               RTE_LOG(ERR, USER1, "Failed to process verify op\n");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       status = TEST_SUCCESS;
-       if (result_op->status != RTE_CRYPTO_OP_STATUS_SUCCESS) {
-               RTE_LOG(ERR, USER1, "Failed to process sign-verify op\n");
-               status = TEST_FAILED;
-       }
-
-error_exit:
-
-       rte_crypto_op_free(op);
-
-       return status;
-}
-
-static int
-queue_ops_rsa_enc_dec(void *sess)
-{
-       struct rte_mempool *op_mpool = params->op_mpool;
-       uint8_t dev_id = params->valid_devs[0];
-       struct rte_crypto_op *op, *result_op;
-       struct rte_crypto_asym_op *asym_op;
-       uint8_t cipher_buf[TEST_DATA_SIZE] = {0};
-       int ret, status = TEST_SUCCESS;
-
-       /* Set up crypto op data structure */
-       op = rte_crypto_op_alloc(op_mpool, RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
-       if (!op) {
-               RTE_LOG(ERR, USER1, "Failed to allocate asymmetric crypto "
-                       "operation struct\n");
-               return TEST_FAILED;
-       }
-
-       asym_op = op->asym;
-
-       /* Compute encryption on the test vector */
-       asym_op->rsa.op_type = RTE_CRYPTO_ASYM_OP_ENCRYPT;
-
-       asym_op->rsa.message.data = rsaplaintext.data;
-       asym_op->rsa.cipher.data = cipher_buf;
-       asym_op->rsa.cipher.length = 0;
-       asym_op->rsa.message.length = rsaplaintext.len;
-       asym_op->rsa.padding.type = RTE_CRYPTO_RSA_PADDING_PKCS1_5;
-
-       debug_hexdump(stdout, "message", asym_op->rsa.message.data,
-                     asym_op->rsa.message.length);
-
-       /* Attach asymmetric crypto session to crypto operations */
-       rte_crypto_op_attach_asym_session(op, sess);
-
-       RTE_LOG(DEBUG, USER1, "Process ASYM operation\n");
-
-       /* Process crypto operation */
-       if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
-               RTE_LOG(ERR, USER1, "Error sending packet for encryption\n");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
-               rte_pause();
-
-       if (result_op == NULL) {
-               RTE_LOG(ERR, USER1, "Failed to process encryption op\n");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-       debug_hexdump(stdout, "encrypted message", asym_op->rsa.cipher.data,
-                     asym_op->rsa.cipher.length);
-
-       /* Use the resulted output as decryption Input vector*/
-       asym_op = result_op->asym;
-       asym_op->rsa.message.length = 0;
-       asym_op->rsa.op_type = RTE_CRYPTO_ASYM_OP_DECRYPT;
-       asym_op->rsa.padding.type = RTE_CRYPTO_RSA_PADDING_PKCS1_5;
-
-       /* Process crypto operation */
-       if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
-               RTE_LOG(ERR, USER1, "Error sending packet for decryption\n");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
-               rte_pause();
-
-       if (result_op == NULL) {
-               RTE_LOG(ERR, USER1, "Failed to process decryption op\n");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-       status = TEST_SUCCESS;
-       ret = rsa_verify(&rsaplaintext, result_op);
-       if (ret)
-               status = TEST_FAILED;
-
-error_exit:
-
-       rte_crypto_op_free(op);
-
-       return status;
-}
-static int
-test_cryptodev_asym_ver(struct rte_crypto_op *op,
-                               struct rte_crypto_asym_xform *xform_tc,
-                               union test_case_structure *data_tc,
-                               struct rte_crypto_op *result_op)
-{
-       int status = TEST_FAILED;
-       int ret = 0;
-       uint8_t *data_expected = NULL, *data_received = NULL;
-       size_t data_size = 0;
-
-       switch (data_tc->modex.xform_type) {
-       case RTE_CRYPTO_ASYM_XFORM_MODEX:
-               data_expected = data_tc->modex.reminder.data;
-               data_received = result_op->asym->modex.result.data;
-               data_size = result_op->asym->modex.result.length;
-               break;
-       case RTE_CRYPTO_ASYM_XFORM_MODINV:
-               data_expected = data_tc->modinv.inverse.data;
-               data_received = result_op->asym->modinv.result.data;
-               data_size = result_op->asym->modinv.result.length;
-               break;
-       case RTE_CRYPTO_ASYM_XFORM_RSA:
-               if (op->asym->rsa.op_type == RTE_CRYPTO_ASYM_OP_ENCRYPT) {
-                       data_size = xform_tc->rsa.n.length;
-                       data_received = result_op->asym->rsa.cipher.data;
-                       data_expected = data_tc->rsa_data.ct.data;
-               } else if (op->asym->rsa.op_type == RTE_CRYPTO_ASYM_OP_DECRYPT) 
{
-                       data_size = xform_tc->rsa.n.length;
-                       data_expected = data_tc->rsa_data.pt.data;
-                       data_received = result_op->asym->rsa.message.data;
-               } else if (op->asym->rsa.op_type == RTE_CRYPTO_ASYM_OP_SIGN) {
-                       data_size = xform_tc->rsa.n.length;
-                       data_expected = data_tc->rsa_data.sign.data;
-                       data_received = result_op->asym->rsa.sign.data;
-               } else if (op->asym->rsa.op_type == RTE_CRYPTO_ASYM_OP_VERIFY) {
-                       data_size = xform_tc->rsa.n.length;
-                       data_expected = data_tc->rsa_data.pt.data;
-                       data_received = result_op->asym->rsa.cipher.data;
-               }
-               break;
-       case RTE_CRYPTO_ASYM_XFORM_DH:
-       case RTE_CRYPTO_ASYM_XFORM_DSA:
-       case RTE_CRYPTO_ASYM_XFORM_NONE:
-       case RTE_CRYPTO_ASYM_XFORM_UNSPECIFIED:
-       default:
-               break;
-       }
-       ret = memcmp(data_expected, data_received, data_size);
-       if (!ret && data_size)
-               status = TEST_SUCCESS;
-
-       return status;
-}
-
-static int
-test_cryptodev_asym_op(struct crypto_testsuite_params_asym *params,
-       union test_case_structure *data_tc,
-       char *test_msg, int sessionless, enum rte_crypto_asym_op_type type,
-       enum rte_crypto_rsa_priv_key_type key_type)
-{
-       struct rte_crypto_asym_op *asym_op = NULL;
-       struct rte_crypto_op *op = NULL;
-       struct rte_crypto_op *result_op = NULL;
-       struct rte_crypto_asym_xform xform_tc;
-       void *sess = NULL;
-       struct rte_cryptodev_asym_capability_idx cap_idx;
-       const struct rte_cryptodev_asymmetric_xform_capability *capability;
-       uint8_t dev_id = params->valid_devs[0];
-       uint8_t input[TEST_DATA_SIZE] = {0};
-       uint8_t *result = NULL;
-
-       int ret, status = TEST_SUCCESS;
-
-       xform_tc.next = NULL;
-       xform_tc.xform_type = data_tc->modex.xform_type;
-
-       cap_idx.type = xform_tc.xform_type;
-       capability = rte_cryptodev_asym_capability_get(dev_id, &cap_idx);
-
-       if (capability == NULL) {
-               RTE_LOG(INFO, USER1,
-                       "Device doesn't support MODEX. Test Skipped\n");
-               return TEST_SKIPPED;
-       }
-
-       /* Generate crypto op data structure */
-       op = rte_crypto_op_alloc(params->op_mpool,
-               RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
-
-       if (!op) {
-               snprintf(test_msg, ASYM_TEST_MSG_LEN,
-                       "line %u FAILED: %s",
-                       __LINE__, "Failed to allocate asymmetric crypto "
-                       "operation struct");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       asym_op = op->asym;
-
-       switch (xform_tc.xform_type) {
-       case RTE_CRYPTO_ASYM_XFORM_MODEX:
-               result = rte_zmalloc(NULL, data_tc->modex.result_len, 0);
-               xform_tc.modex.modulus.data = data_tc->modex.modulus.data;
-               xform_tc.modex.modulus.length = data_tc->modex.modulus.len;
-               xform_tc.modex.exponent.data = data_tc->modex.exponent.data;
-               xform_tc.modex.exponent.length = data_tc->modex.exponent.len;
-               memcpy(input, data_tc->modex.base.data,
-                       data_tc->modex.base.len);
-               asym_op->modex.base.data = input;
-               asym_op->modex.base.length = data_tc->modex.base.len;
-               asym_op->modex.result.data = result;
-               asym_op->modex.result.length = data_tc->modex.result_len;
-               if (rte_cryptodev_asym_xform_capability_check_modlen(capability,
-                               xform_tc.modex.modulus.length)) {
-                       snprintf(test_msg, ASYM_TEST_MSG_LEN,
-                               "line %u "
-                               "FAILED: %s", __LINE__,
-                               "Invalid MODULUS length specified");
-                       status = TEST_FAILED;
-                       goto error_exit;
-               }
-               break;
-       case RTE_CRYPTO_ASYM_XFORM_MODINV:
-               result = rte_zmalloc(NULL, data_tc->modinv.result_len, 0);
-               xform_tc.modinv.modulus.data = data_tc->modinv.modulus.data;
-               xform_tc.modinv.modulus.length = data_tc->modinv.modulus.len;
-               memcpy(input, data_tc->modinv.base.data,
-                       data_tc->modinv.base.len);
-               asym_op->modinv.base.data = input;
-               asym_op->modinv.base.length = data_tc->modinv.base.len;
-               asym_op->modinv.result.data = result;
-               asym_op->modinv.result.length = data_tc->modinv.result_len;
-               if (rte_cryptodev_asym_xform_capability_check_modlen(capability,
-                               xform_tc.modinv.modulus.length)) {
-                       snprintf(test_msg, ASYM_TEST_MSG_LEN,
-                               "line %u "
-                               "FAILED: %s", __LINE__,
-                               "Invalid MODULUS length specified");
-                       status = TEST_FAILED;
-                       goto error_exit;
-               }
-               break;
-       case RTE_CRYPTO_ASYM_XFORM_RSA:
-               result = rte_zmalloc(NULL, data_tc->rsa_data.n.len, 0);
-               op->asym->rsa.op_type = type;
-               xform_tc.rsa.e.data = data_tc->rsa_data.e.data;
-               xform_tc.rsa.e.length = data_tc->rsa_data.e.len;
-               xform_tc.rsa.n.data = data_tc->rsa_data.n.data;
-               xform_tc.rsa.n.length = data_tc->rsa_data.n.len;
-
-               if (key_type == RTE_RSA_KEY_TYPE_EXP) {
-                       xform_tc.rsa.d.data = data_tc->rsa_data.d.data;
-                       xform_tc.rsa.d.length = data_tc->rsa_data.d.len;
-               } else {
-                       xform_tc.rsa.qt.p.data = data_tc->rsa_data.p.data;
-                       xform_tc.rsa.qt.p.length = data_tc->rsa_data.p.len;
-                       xform_tc.rsa.qt.q.data = data_tc->rsa_data.q.data;
-                       xform_tc.rsa.qt.q.length = data_tc->rsa_data.q.len;
-                       xform_tc.rsa.qt.dP.data = data_tc->rsa_data.dP.data;
-                       xform_tc.rsa.qt.dP.length = data_tc->rsa_data.dP.len;
-                       xform_tc.rsa.qt.dQ.data = data_tc->rsa_data.dQ.data;
-                       xform_tc.rsa.qt.dQ.length = data_tc->rsa_data.dQ.len;
-                       xform_tc.rsa.qt.qInv.data = data_tc->rsa_data.qInv.data;
-                       xform_tc.rsa.qt.qInv.length = 
data_tc->rsa_data.qInv.len;
-               }
-
-               xform_tc.rsa.key_type = key_type;
-               op->asym->rsa.padding.type = data_tc->rsa_data.padding;
-
-               if (op->asym->rsa.op_type == RTE_CRYPTO_ASYM_OP_ENCRYPT) {
-                       asym_op->rsa.message.data = data_tc->rsa_data.pt.data;
-                       asym_op->rsa.message.length = data_tc->rsa_data.pt.len;
-                       asym_op->rsa.cipher.data = result;
-                       asym_op->rsa.cipher.length = data_tc->rsa_data.n.len;
-               } else if (op->asym->rsa.op_type == RTE_CRYPTO_ASYM_OP_DECRYPT) 
{
-                       asym_op->rsa.message.data = result;
-                       asym_op->rsa.message.length = data_tc->rsa_data.n.len;
-                       asym_op->rsa.cipher.data = data_tc->rsa_data.ct.data;
-                       asym_op->rsa.cipher.length = data_tc->rsa_data.ct.len;
-               } else if (op->asym->rsa.op_type == RTE_CRYPTO_ASYM_OP_SIGN) {
-                       asym_op->rsa.sign.data = result;
-                       asym_op->rsa.sign.length = data_tc->rsa_data.n.len;
-                       asym_op->rsa.message.data = data_tc->rsa_data.pt.data;
-                       asym_op->rsa.message.length = data_tc->rsa_data.pt.len;
-               } else if (op->asym->rsa.op_type == RTE_CRYPTO_ASYM_OP_VERIFY) {
-                       asym_op->rsa.cipher.data = result;
-                       asym_op->rsa.cipher.length = data_tc->rsa_data.n.len;
-                       asym_op->rsa.sign.data = data_tc->rsa_data.sign.data;
-                       asym_op->rsa.sign.length = data_tc->rsa_data.sign.len;
-               }
-               break;
-       case RTE_CRYPTO_ASYM_XFORM_DH:
-       case RTE_CRYPTO_ASYM_XFORM_DSA:
-       case RTE_CRYPTO_ASYM_XFORM_NONE:
-       case RTE_CRYPTO_ASYM_XFORM_UNSPECIFIED:
-       default:
-               snprintf(test_msg, ASYM_TEST_MSG_LEN,
-                               "line %u "
-                               "FAILED: %s", __LINE__,
-                               "Invalid ASYM algorithm specified");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       if (!sessionless) {
-               ret = rte_cryptodev_asym_session_create(dev_id, &xform_tc,
-                               params->session_mpool, &sess);
-               if (ret < 0) {
-                       snprintf(test_msg, ASYM_TEST_MSG_LEN,
-                                       "line %u "
-                                       "FAILED: %s", __LINE__,
-                                       "Session creation failed");
-                       status = (ret == -ENOTSUP) ? TEST_SKIPPED : TEST_FAILED;
-                       goto error_exit;
-               }
-
-               rte_crypto_op_attach_asym_session(op, sess);
-       } else {
-               asym_op->xform = &xform_tc;
-               op->sess_type = RTE_CRYPTO_OP_SESSIONLESS;
-       }
-       RTE_LOG(DEBUG, USER1, "Process ASYM operation");
-
-       /* Process crypto operation */
-       if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
-               snprintf(test_msg, ASYM_TEST_MSG_LEN,
-                               "line %u FAILED: %s",
-                               __LINE__, "Error sending packet for operation");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
-               rte_pause();
-
-       if (result_op == NULL) {
-               snprintf(test_msg, ASYM_TEST_MSG_LEN,
-                               "line %u FAILED: %s",
-                               __LINE__, "Failed to process asym crypto op");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       if (test_cryptodev_asym_ver(op, &xform_tc, data_tc, result_op) != 
TEST_SUCCESS) {
-               snprintf(test_msg, ASYM_TEST_MSG_LEN,
-                       "line %u FAILED: %s",
-                       __LINE__, "Verification failed ");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       if (!sessionless)
-               snprintf(test_msg, ASYM_TEST_MSG_LEN, "PASS");
-       else
-               snprintf(test_msg, ASYM_TEST_MSG_LEN, "SESSIONLESS PASS");
-
-error_exit:
-               if (sess != NULL)
-                       rte_cryptodev_asym_session_free(dev_id, sess);
-
-               rte_crypto_op_free(op);
-
-               rte_free(result);
-
-       return status;
-}
-
-static int
-test_one_case(const void *test_case, int sessionless)
-{
-       int status = TEST_SUCCESS, i = 0;
-       char test_msg[ASYM_TEST_MSG_LEN + 1];
-
-       /* Map the case to union */
-       union test_case_structure tc;
-       memcpy(&tc, test_case, sizeof(tc));
-
-       if (tc.modex.xform_type == RTE_CRYPTO_ASYM_XFORM_MODEX
-                       || tc.modex.xform_type == RTE_CRYPTO_ASYM_XFORM_MODINV) 
{
-               status = test_cryptodev_asym_op(params, &tc, test_msg,
-                               sessionless, 0, 0);
-               printf("  %u) TestCase %s %s\n", test_index++,
-                       tc.modex.description, test_msg);
-       } else {
-               for (i = 0; i < RTE_CRYPTO_ASYM_OP_LIST_END; i++) {
-                       if (tc.modex.xform_type == RTE_CRYPTO_ASYM_XFORM_RSA) {
-                               if (tc.rsa_data.op_type_flags & (1 << i)) {
-                                       if (tc.rsa_data.key_exp) {
-                                               status = test_cryptodev_asym_op(
-                                                       params, &tc,
-                                                       test_msg, sessionless, 
i,
-                                                       RTE_RSA_KEY_TYPE_EXP);
-                                       }
-                                       if (status)
-                                               break;
-                                       if (tc.rsa_data.key_qt && (i ==
-                                                       
RTE_CRYPTO_ASYM_OP_DECRYPT ||
-                                                       i == 
RTE_CRYPTO_ASYM_OP_SIGN)) {
-                                               status = test_cryptodev_asym_op(
-                                                       params,
-                                                       &tc, test_msg, 
sessionless, i,
-                                                       RTE_RSA_KEY_TYPE_QT);
-                                       }
-                                       if (status)
-                                               break;
-                               }
-                       }
-               }
-               printf("  %u) TestCase %s %s\n", test_index++,
-                       tc.modex.description, test_msg);
-       }
-
-       return status;
-}
-
-static int
-load_test_vectors(void)
-{
-       uint32_t i = 0, v_size = 0;
-       /* Load RSA vector*/
-       v_size = RTE_DIM(rsa_test_case_list);
-       for (i = 0; i < v_size; i++) {
-               if (test_vector.size >= (TEST_VECTOR_SIZE)) {
-                       RTE_LOG(DEBUG, USER1,
-                               "TEST_VECTOR_SIZE too small\n");
-                       return -1;
-               }
-               test_vector.address[test_vector.size] = &rsa_test_case_list[i];
-               test_vector.size++;
-       }
-       return 0;
-}
-
-static int
-test_one_by_one(void)
-{
-       int status = TEST_SUCCESS;
-       uint32_t i = 0;
-       uint8_t dev_id = params->valid_devs[0];
-       struct rte_cryptodev_info dev_info;
-       int sessionless = 0;
-
-       rte_cryptodev_info_get(dev_id, &dev_info);
-       if ((dev_info.feature_flags &
-                       RTE_CRYPTODEV_FF_ASYM_SESSIONLESS)) {
-               sessionless = 1;
-       }
-
-       /* Go through all test cases */
-       test_index = 0;
-       for (i = 0; i < test_vector.size; i++) {
-               if (test_one_case(test_vector.address[i], 0) != TEST_SUCCESS)
-                       status = TEST_FAILED;
-       }
-       if (sessionless) {
-               for (i = 0; i < test_vector.size; i++) {
-                       if (test_one_case(test_vector.address[i], 1)
-                                       != TEST_SUCCESS)
-                               status = TEST_FAILED;
-               }
-       }
-
-       TEST_ASSERT_EQUAL(status, 0, "Test failed");
-       return status;
-}
-
-static int
-test_rsa_sign_verify(void)
-{
-       struct rte_mempool *sess_mpool = params->session_mpool;
-       uint8_t dev_id = params->valid_devs[0];
-       void *sess = NULL;
-       struct rte_cryptodev_info dev_info;
-       int ret, status = TEST_SUCCESS;
-
-       /* Test case supports op with exponent key only,
-        * Check in PMD feature flag for RSA exponent key type support.
-        */
-       rte_cryptodev_info_get(dev_id, &dev_info);
-       if (!(dev_info.feature_flags &
-                               RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_EXP)) {
-               RTE_LOG(INFO, USER1, "Device doesn't support sign op with "
-                       "exponent key type. Test Skipped\n");
-               return TEST_SKIPPED;
-       }
-
-       ret = rte_cryptodev_asym_session_create(dev_id, &rsa_xform, sess_mpool, 
&sess);
-
-       if (ret < 0) {
-               RTE_LOG(ERR, USER1, "Session creation failed for "
-                       "sign_verify\n");
-               status = (ret == -ENOTSUP) ? TEST_SKIPPED : TEST_FAILED;
-               goto error_exit;
-       }
-
-       status = queue_ops_rsa_sign_verify(sess);
-
-error_exit:
-       rte_cryptodev_asym_session_free(dev_id, sess);
-
-       TEST_ASSERT_EQUAL(status, 0, "Test failed");
-
-       return status;
-}
-
-static int
-test_rsa_enc_dec(void)
-{
-       struct rte_mempool *sess_mpool = params->session_mpool;
-       uint8_t dev_id = params->valid_devs[0];
-       void *sess = NULL;
-       struct rte_cryptodev_info dev_info;
-       int ret, status = TEST_SUCCESS;
-
-       /* Test case supports op with exponent key only,
-        * Check in PMD feature flag for RSA exponent key type support.
-        */
-       rte_cryptodev_info_get(dev_id, &dev_info);
-       if (!(dev_info.feature_flags &
-                               RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_EXP)) {
-               RTE_LOG(INFO, USER1, "Device doesn't support decrypt op with "
-                       "exponent key type. Test skipped\n");
-               return TEST_SKIPPED;
-       }
-
-       ret = rte_cryptodev_asym_session_create(dev_id, &rsa_xform, sess_mpool, 
&sess);
-
-       if (ret < 0) {
-               RTE_LOG(ERR, USER1, "Session creation failed for enc_dec\n");
-               status = (ret == -ENOTSUP) ? TEST_SKIPPED : TEST_FAILED;
-               goto error_exit;
-       }
-
-       status = queue_ops_rsa_enc_dec(sess);
-
-error_exit:
-
-       rte_cryptodev_asym_session_free(dev_id, sess);
-
-       TEST_ASSERT_EQUAL(status, 0, "Test failed");
-
-       return status;
-}
-
-static int
-test_rsa_sign_verify_crt(void)
-{
-       struct rte_mempool *sess_mpool = params->session_mpool;
-       uint8_t dev_id = params->valid_devs[0];
-       void *sess = NULL;
-       struct rte_cryptodev_info dev_info;
-       int ret, status = TEST_SUCCESS;
-
-       /* Test case supports op with quintuple format key only,
-        * Check im PMD feature flag for RSA quintuple key type support.
-        */
-       rte_cryptodev_info_get(dev_id, &dev_info);
-       if (!(dev_info.feature_flags & RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_QT)) {
-               RTE_LOG(INFO, USER1, "Device doesn't support sign op with "
-                       "quintuple key type. Test skipped\n");
-               return TEST_SKIPPED;
-       }
-
-       ret = rte_cryptodev_asym_session_create(dev_id, &rsa_xform_crt, 
sess_mpool, &sess);
-
-       if (ret < 0) {
-               RTE_LOG(ERR, USER1, "Session creation failed for "
-                       "sign_verify_crt\n");
-               status = (ret == -ENOTSUP) ? TEST_SKIPPED : TEST_FAILED;
-               goto error_exit;
-       }
-
-       status = queue_ops_rsa_sign_verify(sess);
-
-error_exit:
-
-       rte_cryptodev_asym_session_free(dev_id, sess);
-
-       TEST_ASSERT_EQUAL(status, 0, "Test failed");
-
-       return status;
-}
-
-static int
-test_rsa_enc_dec_crt(void)
-{
-       struct rte_mempool *sess_mpool = params->session_mpool;
-       uint8_t dev_id = params->valid_devs[0];
-       void *sess = NULL;
-       struct rte_cryptodev_info dev_info;
-       int ret, status = TEST_SUCCESS;
-
-       /* Test case supports op with quintuple format key only,
-        * Check in PMD feature flag for RSA quintuple key type support.
-        */
-       rte_cryptodev_info_get(dev_id, &dev_info);
-       if (!(dev_info.feature_flags & RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_QT)) {
-               RTE_LOG(INFO, USER1, "Device doesn't support decrypt op with "
-                       "quintuple key type. Test skipped\n");
-               return TEST_SKIPPED;
-       }
-
-       ret = rte_cryptodev_asym_session_create(dev_id, &rsa_xform_crt, 
sess_mpool, &sess);
-
-       if (ret < 0) {
-               RTE_LOG(ERR, USER1, "Session creation failed for "
-                       "enc_dec_crt\n");
-               status = (ret == -ENOTSUP) ? TEST_SKIPPED : TEST_FAILED;
-               goto error_exit;
-       }
-
-       status = queue_ops_rsa_enc_dec(sess);
-
-error_exit:
-
-       rte_cryptodev_asym_session_free(dev_id, sess);
-
-       TEST_ASSERT_EQUAL(status, 0, "Test failed");
-
-       return status;
-}
-
 static int
 testsuite_setup(void)
 {
@@ -809,7 +74,6 @@ testsuite_setup(void)
        memset(params, 0, sizeof(*params));
 
        test_vector.size = 0;
-       load_test_vectors();
 
        /* Device, op pool and session configuration for asymmetric crypto. 8< 
*/
        params->op_mpool = rte_crypto_op_pool_create(
@@ -995,6 +259,283 @@ test_capability(void)
        return TEST_SUCCESS;
 }
 
+static int send(struct rte_crypto_op **op,
+               struct rte_crypto_op **result_op)
+{
+       int ticks = 0;
+
+       if (rte_cryptodev_enqueue_burst(params->valid_devs[0], 0,
+                       op, 1) != 1) {
+               RTE_LOG(ERR, USER1,
+                       "line %u FAILED: Error sending packet for operation on 
device %d",
+                       __LINE__, params->valid_devs[0]);
+               return TEST_FAILED;
+       }
+       while (rte_cryptodev_dequeue_burst(params->valid_devs[0], 0,
+                       result_op, 1) == 0) {
+               rte_delay_ms(1);
+               ticks++;
+               if (ticks >= DEQ_TIMEOUT) {
+                       RTE_LOG(ERR, USER1,
+                               "line %u FAILED: Cannot dequeue the crypto op 
on device %d",
+                               __LINE__, params->valid_devs[0]);
+                       return TEST_FAILED;
+               }
+       }
+       TEST_ASSERT_NOT_NULL(*result_op,
+                       "line %u FAILED: Failed to process asym crypto op",
+                       __LINE__);
+       TEST_ASSERT_SUCCESS((*result_op)->status,
+                       "line %u FAILED: Failed to process asym crypto op, 
error status received",
+                       __LINE__);
+       return TEST_SUCCESS;
+}
+
+#define SET_RSA_PARAM(arg, vector, coef) \
+       uint8_t coef[TEST_DATA_SIZE] = { }; \
+       memcpy(coef, vector->coef.data, vector->coef.len); \
+       arg.coef.data = coef; \
+       arg.coef.length = vector->coef.len
+
+#define SET_RSA_PARAM_QT(arg, vector, coef) \
+       uint8_t coef[TEST_DATA_SIZE] = { }; \
+       memcpy(coef, vector->coef.data, vector->coef.len); \
+       arg.qt.coef.data = coef; \
+       arg.qt.coef.length = vector->coef.len
+
+static int
+RSA_Sign_Verify(const struct rsa_test_data_2 *vector)
+{
+       uint8_t output_buf[TEST_DATA_SIZE];
+
+       self->op->asym->rsa.op_type = RTE_CRYPTO_ASYM_OP_SIGN;
+       self->op->asym->rsa.sign.length = 0;
+       self->op->asym->rsa.sign.data = output_buf;
+       SET_RSA_PARAM(self->op->asym->rsa, vector, message);
+       self->op->asym->rsa.padding.type = vector->padding;
+       rte_crypto_op_attach_asym_session(self->op, self->sess);
+       TEST_ASSERT_SUCCESS(send(&self->op, &self->result_op),
+               "Failed to process crypto op (RSA Signature)");
+
+       self->op->asym->rsa.op_type = RTE_CRYPTO_ASYM_OP_VERIFY;
+       self->op->asym->rsa.padding.type = vector->padding;
+       TEST_ASSERT_SUCCESS(send(&self->op, &self->result_op),
+               "Failed to process crypto op (RSA Verify)");
+
+       return TEST_SUCCESS;
+}
+
+static int
+RSA_Encrypt(const struct rsa_test_data_2 *vector, uint8_t *cipher_buf)
+{
+       self->result_op = NULL;
+       /* Compute encryption on the test vector */
+       self->op->asym->rsa.op_type = RTE_CRYPTO_ASYM_OP_ENCRYPT;
+       self->op->asym->rsa.cipher.data = cipher_buf;
+       self->op->asym->rsa.cipher.length = 0;
+       SET_RSA_PARAM(self->op->asym->rsa, vector, message);
+       self->op->asym->rsa.padding.type = vector->padding;
+
+       rte_crypto_op_attach_asym_session(self->op, self->sess);
+       TEST_ASSERT_SUCCESS(send(&self->op, &self->result_op),
+               "Failed to process crypto op (Enryption)");
+
+       return 0;
+}
+
+static int
+RSA_Decrypt(const struct rsa_test_data_2 *vector, uint8_t *plaintext,
+               const int use_op)
+{
+       uint8_t cipher[TEST_DATA_SIZE] = { 0 };
+
+       if (use_op == 0) {
+               memcpy(cipher, vector->cipher.data, vector->cipher.len);
+               self->op->asym->rsa.cipher.data = cipher;
+               self->op->asym->rsa.cipher.length = vector->cipher.len;
+       }
+       self->result_op = NULL;
+       self->op->asym->rsa.message.data = plaintext;
+       self->op->asym->rsa.message.length = 0;
+       self->op->asym->rsa.op_type = RTE_CRYPTO_ASYM_OP_DECRYPT;
+       self->op->asym->rsa.padding.type = vector->padding;
+       rte_crypto_op_attach_asym_session(self->op, self->sess);
+       TEST_ASSERT_SUCCESS(send(&self->op, &self->result_op),
+               "Failed to process crypto op (Decryption)");
+       return 0;
+}
+
+static void
+RSA_key_init_Exp(struct rte_crypto_asym_xform *xform,
+               const struct rsa_test_data_2 *vector)
+{
+       SET_RSA_PARAM(xform->rsa, vector, n);
+       SET_RSA_PARAM(xform->rsa, vector, e);
+       SET_RSA_PARAM(xform->rsa, vector, d);
+       xform->rsa.key_type = RTE_RSA_KEY_TYPE_EXP;
+}
+
+static void
+RSA_key_init_CRT(struct rte_crypto_asym_xform *xform,
+               const struct rsa_test_data_2 *vector)
+{
+       SET_RSA_PARAM(xform->rsa, vector, n);
+       SET_RSA_PARAM(xform->rsa, vector, e);
+       SET_RSA_PARAM_QT(xform->rsa, vector, p);
+       SET_RSA_PARAM_QT(xform->rsa, vector, q);
+       SET_RSA_PARAM_QT(xform->rsa, vector, dP);
+       SET_RSA_PARAM_QT(xform->rsa, vector, dQ);
+       SET_RSA_PARAM_QT(xform->rsa, vector, qInv);
+       xform->rsa.key_type = RTE_RSA_KEY_TYPE_QT;
+}
+
+typedef void (*rsa_key_init_t)(struct rte_crypto_asym_xform *,
+       const struct rsa_test_data_2 *);
+
+static int
+RSA_Init_Session(const struct rsa_test_data_2 *vector,
+       rsa_key_init_t key_init)
+{
+       const uint8_t dev_id = params->valid_devs[0];
+       struct rte_cryptodev_info dev_info;
+       struct rte_crypto_asym_xform xform = { };
+       int ret = 0;
+
+       key_init(&xform, vector);
+       xform.xform_type = RTE_CRYPTO_ASYM_XFORM_RSA;
+
+       rte_cryptodev_info_get(dev_id, &dev_info);
+       if (!(dev_info.feature_flags & RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_QT)) {
+               RTE_LOG(INFO, USER1,
+                       "Device doesn't support decrypt op with quintuple key 
type. Test skipped\n");
+               return TEST_SKIPPED;
+       }
+       ret = rte_cryptodev_asym_session_create(dev_id, &xform,
+               params->session_mpool, &self->sess);
+       if (ret < 0) {
+               RTE_LOG(ERR, USER1,
+                       "Session creation failed for enc_dec_crt\n");
+               return (ret == -ENOTSUP) ? TEST_SKIPPED : TEST_FAILED;
+       }
+       return 0;
+}
+
+static int
+PWCT_RSA_Encrypt_Decrypt(const void *data)
+{
+       uint8_t cipher_buf[TEST_DATA_SIZE] = {0};
+       uint8_t message[TEST_DATA_SIZE] = {0};
+       const struct rsa_test_data_2 *vector = data;
+       int ret = RSA_Init_Session(vector, RSA_key_init_Exp);
+
+       if (ret) {
+               RTE_LOG(ERR, USER1, "Failed to init session for RSA\n");
+               return ret;
+       }
+       TEST_ASSERT_SUCCESS(RSA_Encrypt(vector, cipher_buf),
+               "RSA: Failed to encrypt");
+       TEST_ASSERT_SUCCESS(RSA_Decrypt(vector, message, 1),
+               "RSA: Failed to decrypt");
+       TEST_ASSERT_BUFFERS_ARE_EQUAL(vector->message.data,
+               self->result_op->asym->rsa.message.data,
+               vector->message.len,
+               "operation verification failed\n");
+       return TEST_SUCCESS;
+}
+
+static int
+PWCT_RSA_CRT_Encrypt_Decrypt(const void *data)
+{
+       uint8_t cipher_buf[TEST_DATA_SIZE] = {0};
+       uint8_t message[TEST_DATA_SIZE] = {0};
+       const struct rsa_test_data_2 *vector = data;
+       int ret = RSA_Init_Session(vector, RSA_key_init_CRT);
+
+       if (ret) {
+               RTE_LOG(ERR, USER1, "Failed to init session for RSA\n");
+               return ret;
+       }
+       TEST_ASSERT_SUCCESS(RSA_Encrypt(vector, cipher_buf),
+               "RSA: Failed to encrypt");
+       TEST_ASSERT_SUCCESS(RSA_Decrypt(vector, message, 1),
+               "RSA: Failed to decrypt");
+       TEST_ASSERT_BUFFERS_ARE_EQUAL(vector->message.data,
+               self->result_op->asym->rsa.message.data,
+               vector->message.len,
+               "operation verification failed\n");
+       return TEST_SUCCESS;
+}
+
+static int
+PWCT_RSA_Sign_Verify(const void *data)
+{
+       const struct rsa_test_data_2 *vector = data;
+       int ret = RSA_Init_Session(vector, RSA_key_init_Exp);
+
+       if (ret) {
+               RTE_LOG(ERR, USER1, "Failed to init session for RSA\n");
+               return ret;
+       }
+       TEST_ASSERT_SUCCESS(RSA_Sign_Verify(vector),
+               "Failed to process RSA operation");
+       return TEST_SUCCESS;
+}
+
+static int
+PWCT_RSA_Sign_Verify_CRT(const void *data)
+{
+       const struct rsa_test_data_2 *vector = data;
+       int ret = RSA_Init_Session(vector, RSA_key_init_CRT);
+
+       if (ret) {
+               RTE_LOG(ERR, USER1, "Failed to init session for RSA\n");
+               return ret;
+       }
+       TEST_ASSERT_SUCCESS(RSA_Sign_Verify(vector),
+               "Failed to process RSA operation");
+       return TEST_SUCCESS;
+}
+
+static int
+KAT_RSA_Encrypt(const void *data)
+{
+       uint8_t cipher_buf[TEST_DATA_SIZE] = {0};
+       const struct rsa_test_data_2 *vector = data;
+       int ret = RSA_Init_Session(vector, RSA_key_init_Exp);
+
+       if (ret) {
+               RTE_LOG(ERR, USER1, "Failed to init session for RSA\n");
+               return ret;
+       }
+       TEST_ASSERT_SUCCESS(RSA_Encrypt(vector, cipher_buf),
+               "RSA: Failed to encrypt");
+       TEST_ASSERT_BUFFERS_ARE_EQUAL(vector->cipher.data,
+               self->result_op->asym->rsa.cipher.data,
+               vector->cipher.len,
+               "operation verification failed\n");
+       return 0;
+}
+
+static int
+KAT_RSA_Decrypt(const void *data)
+{
+       uint8_t message[TEST_DATA_SIZE] = {0};
+       const struct rsa_test_data_2 *vector = data;
+       int ret = RSA_Init_Session(vector, RSA_key_init_Exp);
+
+       if (ret) {
+               RTE_LOG(ERR, USER1, "Failed to init session for RSA\n");
+               return ret;
+       }
+       TEST_ASSERT_SUCCESS(RSA_Decrypt(vector, message, 0),
+               "RSA: Failed to encrypt");
+       TEST_ASSERT_BUFFERS_ARE_EQUAL(vector->message.data,
+               self->result_op->asym->rsa.message.data,
+               vector->message.len,
+               "operation verification failed\n");
+       return 0;
+}
+
 static int
 test_dh_gen_shared_sec(struct rte_crypto_asym_xform *xfrm)
 {
@@ -2074,14 +1615,15 @@ static struct unit_test_suite 
cryptodev_openssl_asym_testsuite  = {
                TEST_CASE_ST(setup_generic, teardown_generic, test_dsa),
                TEST_CASE_ST(setup_generic, teardown_generic,
                                test_dh_keygenration),
-               TEST_CASE_ST(setup_generic, teardown_generic, test_rsa_enc_dec),
-               TEST_CASE_ST(setup_generic, teardown_generic,
-                               test_rsa_sign_verify),
-               TEST_CASE_ST(setup_generic, teardown_generic,
-                               test_rsa_enc_dec_crt),
-               TEST_CASE_ST(setup_generic, teardown_generic,
-                               test_rsa_sign_verify_crt),
-               TEST_CASE_ST(setup_generic, teardown_generic, test_one_by_one),
+               /* RSA */
+               TC_DATA_GENERIC(PWCT_RSA_Encrypt_Decrypt,
+                       RSA_vector_128_20_3_PKCS1),
+               TC_DATA_GENERIC(PWCT_RSA_CRT_Encrypt_Decrypt,
+                       RSA_vector_128_20_3_PKCS1),
+               TC_DATA_GENERIC(PWCT_RSA_Sign_Verify,
+                       RSA_vector_128_20_3_PKCS1),
+               TC_DATA_GENERIC(PWCT_RSA_Sign_Verify_CRT,
+                       RSA_vector_128_20_3_PKCS1),
                /* Modular Multiplicative Inverse */
                TC_DATA_GENERIC(modular_multiplicative_inverse,
                        modinv_test_case),
@@ -2103,7 +1645,10 @@ static struct unit_test_suite 
cryptodev_qat_asym_testsuite  = {
        .setup = testsuite_setup,
        .teardown = testsuite_teardown,
        .unit_test_cases = {
-               TEST_CASE_ST(setup_generic, teardown_generic, test_one_by_one),
+               TC_DATA_GENERIC(KAT_RSA_Encrypt,
+                       RSA_vector_128_20_3_None),
+               TC_DATA_GENERIC(KAT_RSA_Decrypt,
+                       RSA_vector_128_20_3_None),
                /* Modular Multiplicative Inverse */
                TC_DATA_GENERIC(modular_multiplicative_inverse,
                        modinv_test_case),
@@ -2126,10 +1671,15 @@ static struct unit_test_suite 
cryptodev_octeontx_asym_testsuite  = {
        .teardown = testsuite_teardown,
        .unit_test_cases = {
                TEST_CASE_ST(setup_generic, teardown_generic, test_capability),
-               TEST_CASE_ST(setup_generic, teardown_generic,
-                               test_rsa_enc_dec_crt),
-               TEST_CASE_ST(setup_generic, teardown_generic,
-                               test_rsa_sign_verify_crt),
+               /* RSA */
+               TC_DATA_GENERIC(PWCT_RSA_Encrypt_Decrypt,
+                       RSA_vector_128_20_3_PKCS1),
+               TC_DATA_GENERIC(PWCT_RSA_CRT_Encrypt_Decrypt,
+                       RSA_vector_128_20_3_PKCS1),
+               TC_DATA_GENERIC(PWCT_RSA_Sign_Verify,
+                       RSA_vector_128_20_3_PKCS1),
+               TC_DATA_GENERIC(PWCT_RSA_Sign_Verify_CRT,
+                       RSA_vector_128_20_3_PKCS1),
                TEST_CASE_ST(setup_generic, teardown_generic,
                             test_ecdsa_sign_verify_all_curve),
                TEST_CASE_ST(setup_generic, teardown_generic,
diff --git a/app/test/test_cryptodev_asym_util.h 
b/app/test/test_cryptodev_asym_util.h
index 19044a58ad..25d3e4b797 100644
--- a/app/test/test_cryptodev_asym_util.h
+++ b/app/test/test_cryptodev_asym_util.h
@@ -7,16 +7,6 @@
 
 /* Below Apis compare resulted buffer to original test vector */
 
-static inline int rsa_verify(struct rsa_test_data *rsa_param,
-               struct rte_crypto_op *result_op)
-{
-       if (memcmp(rsa_param->data,
-                               result_op->asym->rsa.message.data,
-                               result_op->asym->rsa.message.length))
-               return -1;
-       return 0;
-}
-
 static inline int verify_ecdsa_sign(uint8_t *sign_r,
                uint8_t *sign_s, struct rte_crypto_op *result_op)
 {
diff --git a/app/test/test_cryptodev_rsa_test_vectors.h 
b/app/test/test_cryptodev_rsa_test_vectors.h
index 04539a1ecf..ecc2af50ff 100644
--- a/app/test/test_cryptodev_rsa_test_vectors.h
+++ b/app/test/test_cryptodev_rsa_test_vectors.h
@@ -1,5 +1,6 @@
 /* SPDX-License-Identifier: BSD-3-Clause
  * Copyright(c) 2018 Cavium Networks
+ * Copyright (c) 2019-2023 Intel Corporation
  */
 
 #ifndef TEST_CRYPTODEV_RSA_TEST_VECTORS_H__
@@ -18,11 +19,11 @@ struct rsa_test_data_2 {
        struct {
                uint8_t data[DATA_SIZE];
                uint16_t len;
-       } pt;
+       } message;
        struct {
                uint8_t data[DATA_SIZE];
                uint16_t len;
-       } ct;
+       } cipher;
        struct {
                uint8_t data[DATA_SIZE];
                uint16_t len;
@@ -67,341 +68,302 @@ struct rsa_test_data_2 {
 };
 
 static const struct
-rsa_test_data_2 rsa_test_case_list[] = {
-       {
-               .description = "RSA Encryption Decryption "
-                                          "(n=128, pt=20, e=3) EXP, QT",
-               .xform_type = RTE_CRYPTO_ASYM_XFORM_RSA,
-               .op_type_flags = 1UL << RTE_CRYPTO_ASYM_OP_ENCRYPT |
-                                       1UL << RTE_CRYPTO_ASYM_OP_DECRYPT,
-               .pt = {
-                       .data = {
-                               0x00, 0x02, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
-                               0xbb, 0xbb, 0xbb, 0xbb, 0xf8, 0xba, 0x1a, 0x55,
-                               0xd0, 0x2f, 0x85, 0xae, 0x96, 0x7b, 0xb6, 0x2f,
-                               0xb6, 0xcd, 0xa8, 0xeb, 0x7e, 0x78, 0xa0, 0x50
-                       },
-                       .len = 128,
+rsa_test_data_2 RSA_vector_128_20_3_PKCS1 = {
+       .description =
+               "RSA Encryption Decryption (n=128, pt=20, e=3) EXP, QT",
+       .message = {
+               .data = {
+                       0xf8, 0xba, 0x1a, 0x55, 0xd0, 0x2f, 0x85, 0xae,
+                       0x96, 0x7b, 0xb6, 0x2f, 0xb6, 0xcd, 0xa8, 0xeb,
+                       0x7e, 0x78, 0xa0, 0x50
                },
-               .ct = {
-                       .data = {
-                               0x3D, 0x8D, 0x2F, 0x85, 0xC0, 0xB7, 0x21, 0x3E,
-                               0x5B, 0x4A, 0x96, 0xB2, 0x85, 0x35, 0xAF, 0x0C,
-                               0x62, 0xE9, 0x73, 0xEF, 0x77, 0x76, 0x19, 0xD5,
-                               0x92, 0xF7, 0x1D, 0xB0, 0x15, 0x69, 0x65, 0x82,
-                               0x32, 0x30, 0x4E, 0x29, 0xE7, 0x83, 0xAD, 0x23,
-                               0x66, 0xD9, 0x91, 0x9B, 0xFF, 0x01, 0x10, 0x3B,
-                               0xB2, 0xF8, 0x78, 0x14, 0xD2, 0x6E, 0x3C, 0x59,
-                               0x6E, 0x1A, 0x90, 0x3C, 0x5A, 0xB3, 0x0B, 0x60,
-                               0xE2, 0x71, 0xCC, 0xF5, 0x0C, 0x57, 0x19, 0x03,
-                               0x5B, 0x04, 0x46, 0x7E, 0x13, 0x5B, 0xFF, 0x2C,
-                               0x01, 0x19, 0x75, 0x86, 0x6A, 0xAE, 0x60, 0xFB,
-                               0x0A, 0x4C, 0x14, 0x1A, 0xBC, 0x0E, 0x86, 0xF1,
-                               0x13, 0x10, 0xB3, 0x03, 0x8E, 0x66, 0x6F, 0xA5,
-                               0x53, 0x80, 0x5A, 0x91, 0xE6, 0x7C, 0x3C, 0x38,
-                               0x15, 0xB6, 0x69, 0x3E, 0xF6, 0x54, 0xB0, 0x60,
-                               0x83, 0xE9, 0x2B, 0xF3, 0x26, 0x53, 0x3E, 0x11
-                       },
-                       .len = 128,
+               .len = 20,
+       },
+       .cipher = {
+               .data = {
                },
-               .e = {
-                       .data = {
-                               0x01, 0x00, 0x01
-                       },
-                       .len = 3,
+               .len = 128,
+       },
+       .e = {
+               .data = {
+                       0x01, 0x00, 0x01
                },
-               .d = {
-                       .data = {
-                               0x24, 0xd7, 0xea, 0xf4, 0x7f, 0xe0, 0xca, 0x31,
-                               0x4d, 0xee, 0xc4, 0xa1, 0xbe, 0xab, 0x06, 0x61,
-                               0x32, 0xe7, 0x51, 0x46, 0x27, 0xdf, 0x72, 0xe9,
-                               0x6f, 0xa8, 0x4c, 0xd1, 0x26, 0xef, 0x65, 0xeb,
-                               0x67, 0xff, 0x5f, 0xa7, 0x3b, 0x25, 0xb9, 0x08,
-                               0x8e, 0xa0, 0x47, 0x56, 0xe6, 0x8e, 0xf9, 0xd3,
-                               0x18, 0x06, 0x3d, 0xc6, 0xb1, 0xf8, 0xdc, 0x1b,
-                               0x8d, 0xe5, 0x30, 0x54, 0x26, 0xac, 0x16, 0x3b,
-                               0x7b, 0xad, 0x46, 0x9e, 0x21, 0x6a, 0x57, 0xe6,
-                               0x81, 0x56, 0x1d, 0x2a, 0xc4, 0x39, 0x63, 0x67,
-                               0x81, 0x2c, 0xca, 0xcc, 0xf8, 0x42, 0x04, 0xbe,
-                               0xcf, 0x8f, 0x6c, 0x5b, 0x81, 0x46, 0xb9, 0xc7,
-                               0x62, 0x90, 0x87, 0x35, 0x03, 0x9b, 0x89, 0xcb,
-                               0x37, 0xbd, 0xf1, 0x1b, 0x99, 0xa1, 0x9a, 0x78,
-                               0xd5, 0x4c, 0xdd, 0x3f, 0x41, 0x0c, 0xb7, 0x1a,
-                               0xd9, 0x7b, 0x87, 0x5f, 0xbe, 0xb1, 0x83, 0x41
-                       },
-                       .len = 128,
+               .len = 3,
+       },
+       .d = {
+               .data = {
+                       0x24, 0xd7, 0xea, 0xf4, 0x7f, 0xe0, 0xca, 0x31,
+                       0x4d, 0xee, 0xc4, 0xa1, 0xbe, 0xab, 0x06, 0x61,
+                       0x32, 0xe7, 0x51, 0x46, 0x27, 0xdf, 0x72, 0xe9,
+                       0x6f, 0xa8, 0x4c, 0xd1, 0x26, 0xef, 0x65, 0xeb,
+                       0x67, 0xff, 0x5f, 0xa7, 0x3b, 0x25, 0xb9, 0x08,
+                       0x8e, 0xa0, 0x47, 0x56, 0xe6, 0x8e, 0xf9, 0xd3,
+                       0x18, 0x06, 0x3d, 0xc6, 0xb1, 0xf8, 0xdc, 0x1b,
+                       0x8d, 0xe5, 0x30, 0x54, 0x26, 0xac, 0x16, 0x3b,
+                       0x7b, 0xad, 0x46, 0x9e, 0x21, 0x6a, 0x57, 0xe6,
+                       0x81, 0x56, 0x1d, 0x2a, 0xc4, 0x39, 0x63, 0x67,
+                       0x81, 0x2c, 0xca, 0xcc, 0xf8, 0x42, 0x04, 0xbe,
+                       0xcf, 0x8f, 0x6c, 0x5b, 0x81, 0x46, 0xb9, 0xc7,
+                       0x62, 0x90, 0x87, 0x35, 0x03, 0x9b, 0x89, 0xcb,
+                       0x37, 0xbd, 0xf1, 0x1b, 0x99, 0xa1, 0x9a, 0x78,
+                       0xd5, 0x4c, 0xdd, 0x3f, 0x41, 0x0c, 0xb7, 0x1a,
+                       0xd9, 0x7b, 0x87, 0x5f, 0xbe, 0xb1, 0x83, 0x41
                },
-               .n = {
-                       .data = {
-                               0xb3, 0xa1, 0xaf, 0xb7, 0x13, 0x08, 0x00, 0x0a,
-                               0x35, 0xdc, 0x2b, 0x20, 0x8d, 0xa1, 0xb5, 0xce,
-                               0x47, 0x8a, 0xc3, 0x80, 0xf4, 0x7d, 0x4a, 0xa2,
-                               0x62, 0xfd, 0x61, 0x7f, 0xb5, 0xa8, 0xde, 0x0a,
-                               0x17, 0x97, 0xa0, 0xbf, 0xdf, 0x56, 0x5a, 0x3d,
-                               0x51, 0x56, 0x4f, 0x70, 0x70, 0x3f, 0x63, 0x6a,
-                               0x44, 0x5b, 0xad, 0x84, 0x0d, 0x3f, 0x27, 0x6e,
-                               0x3b, 0x34, 0x91, 0x60, 0x14, 0xb9, 0xaa, 0x72,
-                               0xfd, 0xa3, 0x64, 0xd2, 0x03, 0xa7, 0x53, 0x87,
-                               0x9e, 0x88, 0x0b, 0xc1, 0x14, 0x93, 0x1a, 0x62,
-                               0xff, 0xb1, 0x5d, 0x74, 0xcd, 0x59, 0x63, 0x18,
-                               0x11, 0x3d, 0x4f, 0xba, 0x75, 0xd4, 0x33, 0x4e,
-                               0x23, 0x6b, 0x7b, 0x57, 0x44, 0xe1, 0xd3, 0x03,
-                               0x13, 0xa6, 0xf0, 0x8b, 0x60, 0xb0, 0x9e, 0xee,
-                               0x75, 0x08, 0x9d, 0x71, 0x63, 0x13, 0xcb, 0xa6,
-                               0x81, 0x92, 0x14, 0x03, 0x22, 0x2d, 0xde, 0x55
-                       },
-                       .len = 128,
+               .len = 128,
+       },
+       .n = {
+               .data = {
+                       0xb3, 0xa1, 0xaf, 0xb7, 0x13, 0x08, 0x00,
+                       0x0a, 0x35, 0xdc, 0x2b, 0x20, 0x8d, 0xa1, 0xb5,
+                       0xce, 0x47, 0x8a, 0xc3, 0x80, 0xf4, 0x7d, 0x4a,
+                       0xa2, 0x62, 0xfd, 0x61, 0x7f, 0xb5, 0xa8, 0xde,
+                       0x0a, 0x17, 0x97, 0xa0, 0xbf, 0xdf, 0x56, 0x5a,
+                       0x3d, 0x51, 0x56, 0x4f, 0x70, 0x70, 0x3f, 0x63,
+                       0x6a, 0x44, 0x5b, 0xad, 0x84, 0x0d, 0x3f, 0x27,
+                       0x6e, 0x3b, 0x34, 0x91, 0x60, 0x14, 0xb9, 0xaa,
+                       0x72, 0xfd, 0xa3, 0x64, 0xd2, 0x03, 0xa7, 0x53,
+                       0x87, 0x9e, 0x88, 0x0b, 0xc1, 0x14, 0x93, 0x1a,
+                       0x62, 0xff, 0xb1, 0x5d, 0x74, 0xcd, 0x59, 0x63,
+                       0x18, 0x11, 0x3d, 0x4f, 0xba, 0x75, 0xd4, 0x33,
+                       0x4e, 0x23, 0x6b, 0x7b, 0x57, 0x44, 0xe1, 0xd3,
+                       0x03, 0x13, 0xa6, 0xf0, 0x8b, 0x60, 0xb0, 0x9e,
+                       0xee, 0x75, 0x08, 0x9d, 0x71, 0x63, 0x13, 0xcb,
+                       0xa6, 0x81, 0x92, 0x14, 0x03, 0x22, 0x2d, 0xde,
+                       0x55
                },
-               .p = {
-                       .data = {
-                               0xdc, 0xba, 0x00, 0x01, 0x57, 0x93, 0xe3, 0x05,
-                               0xed, 0x61, 0x9a, 0xa3, 0xaf, 0x6a, 0xd3, 0x47,
-                               0x8f, 0x2d, 0x1e, 0x7f, 0x4d, 0x60, 0xc8, 0x8d,
-                               0x34, 0xb8, 0x17, 0x84, 0xbc, 0xd4, 0xe9, 0x79,
-                               0x95, 0x75, 0x19, 0x37, 0xe0, 0xcc, 0xfe, 0x4c,
-                               0x5d, 0x49, 0x53, 0x61, 0x29, 0xf1, 0xdc, 0x82,
-                               0x03, 0x96, 0x7d, 0x95, 0x4f, 0xdd, 0x3c, 0x0a,
-                               0x64, 0x8a, 0x43, 0x2f, 0x95, 0x4a, 0xed, 0xdd
-                       },
-                       .len = 64,
+               .len = 128,
+       },
+       .p = {
+               .data = {
+                       0xdc, 0xba, 0x00, 0x01, 0x57, 0x93, 0xe3, 0x05,
+                       0xed, 0x61, 0x9a, 0xa3, 0xaf, 0x6a, 0xd3, 0x47,
+                       0x8f, 0x2d, 0x1e, 0x7f, 0x4d, 0x60, 0xc8, 0x8d,
+                       0x34, 0xb8, 0x17, 0x84, 0xbc, 0xd4, 0xe9, 0x79,
+                       0x95, 0x75, 0x19, 0x37, 0xe0, 0xcc, 0xfe, 0x4c,
+                       0x5d, 0x49, 0x53, 0x61, 0x29, 0xf1, 0xdc, 0x82,
+                       0x03, 0x96, 0x7d, 0x95, 0x4f, 0xdd, 0x3c, 0x0a,
+                       0x64, 0x8a, 0x43, 0x2f, 0x95, 0x4a, 0xed, 0xdd
                },
-               .q = {
-                       .data = {
-                               0xd0, 0x56, 0x7a, 0x0a, 0xd5, 0x95, 0xa4, 0x85,
-                               0x53, 0x35, 0xa1, 0x48, 0x07, 0x6a, 0x7c, 0x08,
-                               0xe0, 0xfd, 0x4b, 0x88, 0x77, 0xa6, 0x15, 0x23,
-                               0x0f, 0xbf, 0x14, 0x46, 0x11, 0xee, 0x95, 0xc7,
-                               0x5e, 0x77, 0x65, 0xa2, 0xb5, 0x50, 0xdf, 0x19,
-                               0x07, 0xc7, 0x72, 0xdb, 0x29, 0xf6, 0x54, 0x86,
-                               0xe1, 0xb3, 0x97, 0x0a, 0x28, 0x64, 0x3a, 0x38,
-                               0xa6, 0x7d, 0x13, 0xc3, 0x79, 0xaa, 0x56, 0xd9
-                       },
-                       .len = 64,
+               .len = 64,
+       },
+       .q = {
+               .data = {
+                       0xd0, 0x56, 0x7a, 0x0a, 0xd5, 0x95, 0xa4, 0x85,
+                       0x53, 0x35, 0xa1, 0x48, 0x07, 0x6a, 0x7c, 0x08,
+                       0xe0, 0xfd, 0x4b, 0x88, 0x77, 0xa6, 0x15, 0x23,
+                       0x0f, 0xbf, 0x14, 0x46, 0x11, 0xee, 0x95, 0xc7,
+                       0x5e, 0x77, 0x65, 0xa2, 0xb5, 0x50, 0xdf, 0x19,
+                       0x07, 0xc7, 0x72, 0xdb, 0x29, 0xf6, 0x54, 0x86,
+                       0xe1, 0xb3, 0x97, 0x0a, 0x28, 0x64, 0x3a, 0x38,
+                       0xa6, 0x7d, 0x13, 0xc3, 0x79, 0xaa, 0x56, 0xd9
                },
-               .dP = {
-                       .data = {
-                               0xc5, 0x43, 0x0d, 0x82, 0x25, 0x8c, 0xab, 0x55,
-                               0xbe, 0xc2, 0x7d, 0xfb, 0x4f, 0x68, 0x3f, 0x0e,
-                               0x32, 0xec, 0xf5, 0xd6, 0x7b, 0x86, 0xc5, 0x75,
-                               0x3c, 0xea, 0x51, 0x4a, 0x75, 0xa0, 0x2a, 0x50,
-                               0x58, 0xbb, 0xe0, 0x1f, 0xca, 0x2e, 0x2a, 0x0e,
-                               0x81, 0x48, 0x68, 0xd5, 0xeb, 0x30, 0x96, 0x0b,
-                               0x33, 0xbd, 0xa8, 0xda, 0x6a, 0x17, 0xa3, 0xf2,
-                               0xfd, 0xcb, 0x7b, 0x23, 0xe9, 0x5e, 0x9f, 0x99
-                       },
-                       .len = 64,
+               .len = 64,
+       },
+       .dP = {
+               .data = {
+                       0xc5, 0x43, 0x0d, 0x82, 0x25, 0x8c, 0xab, 0x55,
+                       0xbe, 0xc2, 0x7d, 0xfb, 0x4f, 0x68, 0x3f, 0x0e,
+                       0x32, 0xec, 0xf5, 0xd6, 0x7b, 0x86, 0xc5, 0x75,
+                       0x3c, 0xea, 0x51, 0x4a, 0x75, 0xa0, 0x2a, 0x50,
+                       0x58, 0xbb, 0xe0, 0x1f, 0xca, 0x2e, 0x2a, 0x0e,
+                       0x81, 0x48, 0x68, 0xd5, 0xeb, 0x30, 0x96, 0x0b,
+                       0x33, 0xbd, 0xa8, 0xda, 0x6a, 0x17, 0xa3, 0xf2,
+                       0xfd, 0xcb, 0x7b, 0x23, 0xe9, 0x5e, 0x9f, 0x99
                },
-               .dQ = {
-                       .data = {
-                               0xbe, 0xff, 0xf9, 0x05, 0x43, 0xc8, 0xdc, 0x3b,
-                               0x0b, 0x0d, 0x28, 0xde, 0x73, 0x46, 0x11, 0x8e,
-                               0xc6, 0x4e, 0x11, 0xd8, 0x7b, 0xf0, 0xfc, 0x81,
-                               0xd7, 0x66, 0xd3, 0xbc, 0x65, 0xa6, 0x39, 0x14,
-                               0xbd, 0xab, 0x72, 0xb7, 0x57, 0xc9, 0x5b, 0xaf,
-                               0x83, 0xed, 0x3b, 0x84, 0x68, 0x15, 0x18, 0x6b,
-                               0x4c, 0x32, 0xac, 0x6f, 0x38, 0x96, 0xa2, 0xb5,
-                               0xdb, 0x14, 0xe2, 0x70, 0x9c, 0x73, 0x29, 0x09
-                       },
-                       .len = 64,
+               .len = 64,
+       },
+       .dQ = {
+               .data = {
+                       0xbe, 0xff, 0xf9, 0x05, 0x43, 0xc8, 0xdc, 0x3b,
+                       0x0b, 0x0d, 0x28, 0xde, 0x73, 0x46, 0x11, 0x8e,
+                       0xc6, 0x4e, 0x11, 0xd8, 0x7b, 0xf0, 0xfc, 0x81,
+                       0xd7, 0x66, 0xd3, 0xbc, 0x65, 0xa6, 0x39, 0x14,
+                       0xbd, 0xab, 0x72, 0xb7, 0x57, 0xc9, 0x5b, 0xaf,
+                       0x83, 0xed, 0x3b, 0x84, 0x68, 0x15, 0x18, 0x6b,
+                       0x4c, 0x32, 0xac, 0x6f, 0x38, 0x96, 0xa2, 0xb5,
+                       0xdb, 0x14, 0xe2, 0x70, 0x9c, 0x73, 0x29, 0x09
                },
-               .qInv = {
-                       .data = {
-                               0x59, 0xbd, 0xb1, 0x37, 0xeb, 0x4e, 0xcf, 0x68,
-                               0xe7, 0x85, 0x91, 0xbb, 0xc0, 0xdb, 0x8e, 0x41,
-                               0x91, 0x4a, 0xc0, 0xb1, 0xc5, 0xe8, 0x91, 0xf6,
-                               0xc7, 0x5a, 0x98, 0x1a, 0x8a, 0x0f, 0x45, 0xb2,
-                               0x5b, 0xff, 0x7a, 0x2d, 0x98, 0x89, 0x55, 0xd9,
-                               0xbf, 0x6e, 0xdd, 0x2d, 0xd4, 0xe8, 0x0a, 0xaa,
-                               0xae, 0x2a, 0xc4, 0x16, 0xb5, 0xba, 0xe1, 0x69,
-                               0x71, 0x94, 0xdd, 0xa0, 0xf5, 0x1e, 0x6d, 0xcc
-                       },
-                       .len = 64,
+               .len = 64,
+       },
+       .qInv = {
+               .data = {
+                       0x59, 0xbd, 0xb1, 0x37, 0xeb, 0x4e, 0xcf, 0x68,
+                       0xe7, 0x85, 0x91, 0xbb, 0xc0, 0xdb, 0x8e, 0x41,
+                       0x91, 0x4a, 0xc0, 0xb1, 0xc5, 0xe8, 0x91, 0xf6,
+                       0xc7, 0x5a, 0x98, 0x1a, 0x8a, 0x0f, 0x45, 0xb2,
+                       0x5b, 0xff, 0x7a, 0x2d, 0x98, 0x89, 0x55, 0xd9,
+                       0xbf, 0x6e, 0xdd, 0x2d, 0xd4, 0xe8, 0x0a, 0xaa,
+                       0xae, 0x2a, 0xc4, 0x16, 0xb5, 0xba, 0xe1, 0x69,
+                       0x71, 0x94, 0xdd, 0xa0, 0xf5, 0x1e, 0x6d, 0xcc
                },
-               .padding = RTE_CRYPTO_RSA_PADDING_NONE,
-               .key_exp = 1,
-               .key_qt = 1,
-       }
-};
-
-struct rsa_test_data {
-       uint8_t data[TEST_DATA_SIZE];
-       unsigned int len;
-};
-
-struct rsa_test_data rsaplaintext = {
-       .data = {
-               0xf8, 0xba, 0x1a, 0x55, 0xd0, 0x2f, 0x85, 0xae,
-               0x96, 0x7b, 0xb6, 0x2f, 0xb6, 0xcd, 0xa8, 0xeb,
-               0x7e, 0x78, 0xa0, 0x50
+               .len = 64,
        },
-       .len = 20
-};
-
-uint8_t rsa_n[] = {
-       0xb3, 0xa1, 0xaf, 0xb7, 0x13, 0x08, 0x00,
-       0x0a, 0x35, 0xdc, 0x2b, 0x20, 0x8d, 0xa1, 0xb5,
-       0xce, 0x47, 0x8a, 0xc3, 0x80, 0xf4, 0x7d, 0x4a,
-       0xa2, 0x62, 0xfd, 0x61, 0x7f, 0xb5, 0xa8, 0xde,
-       0x0a, 0x17, 0x97, 0xa0, 0xbf, 0xdf, 0x56, 0x5a,
-       0x3d, 0x51, 0x56, 0x4f, 0x70, 0x70, 0x3f, 0x63,
-       0x6a, 0x44, 0x5b, 0xad, 0x84, 0x0d, 0x3f, 0x27,
-       0x6e, 0x3b, 0x34, 0x91, 0x60, 0x14, 0xb9, 0xaa,
-       0x72, 0xfd, 0xa3, 0x64, 0xd2, 0x03, 0xa7, 0x53,
-       0x87, 0x9e, 0x88, 0x0b, 0xc1, 0x14, 0x93, 0x1a,
-       0x62, 0xff, 0xb1, 0x5d, 0x74, 0xcd, 0x59, 0x63,
-       0x18, 0x11, 0x3d, 0x4f, 0xba, 0x75, 0xd4, 0x33,
-       0x4e, 0x23, 0x6b, 0x7b, 0x57, 0x44, 0xe1, 0xd3,
-       0x03, 0x13, 0xa6, 0xf0, 0x8b, 0x60, 0xb0, 0x9e,
-       0xee, 0x75, 0x08, 0x9d, 0x71, 0x63, 0x13, 0xcb,
-       0xa6, 0x81, 0x92, 0x14, 0x03, 0x22, 0x2d, 0xde,
-       0x55
-};
-
-uint8_t rsa_d[] = {
-       0x24, 0xd7, 0xea, 0xf4, 0x7f, 0xe0, 0xca, 0x31,
-       0x4d, 0xee, 0xc4, 0xa1, 0xbe, 0xab, 0x06, 0x61,
-       0x32, 0xe7, 0x51, 0x46, 0x27, 0xdf, 0x72, 0xe9,
-       0x6f, 0xa8, 0x4c, 0xd1, 0x26, 0xef, 0x65, 0xeb,
-       0x67, 0xff, 0x5f, 0xa7, 0x3b, 0x25, 0xb9, 0x08,
-       0x8e, 0xa0, 0x47, 0x56, 0xe6, 0x8e, 0xf9, 0xd3,
-       0x18, 0x06, 0x3d, 0xc6, 0xb1, 0xf8, 0xdc, 0x1b,
-       0x8d, 0xe5, 0x30, 0x54, 0x26, 0xac, 0x16, 0x3b,
-       0x7b, 0xad, 0x46, 0x9e, 0x21, 0x6a, 0x57, 0xe6,
-       0x81, 0x56, 0x1d, 0x2a, 0xc4, 0x39, 0x63, 0x67,
-       0x81, 0x2c, 0xca, 0xcc, 0xf8, 0x42, 0x04, 0xbe,
-       0xcf, 0x8f, 0x6c, 0x5b, 0x81, 0x46, 0xb9, 0xc7,
-       0x62, 0x90, 0x87, 0x35, 0x03, 0x9b, 0x89, 0xcb,
-       0x37, 0xbd, 0xf1, 0x1b, 0x99, 0xa1, 0x9a, 0x78,
-       0xd5, 0x4c, 0xdd, 0x3f, 0x41, 0x0c, 0xb7, 0x1a,
-       0xd9, 0x7b, 0x87, 0x5f, 0xbe, 0xb1, 0x83, 0x41
-};
-
-uint8_t rsa_e[] = {0x01, 0x00, 0x01};
-
-uint8_t rsa_p[] = {
-       0xdc, 0xba, 0x00, 0x01, 0x57, 0x93, 0xe3, 0x05,
-       0xed, 0x61, 0x9a, 0xa3, 0xaf, 0x6a, 0xd3, 0x47,
-       0x8f, 0x2d, 0x1e, 0x7f, 0x4d, 0x60, 0xc8, 0x8d,
-       0x34, 0xb8, 0x17, 0x84, 0xbc, 0xd4, 0xe9, 0x79,
-       0x95, 0x75, 0x19, 0x37, 0xe0, 0xcc, 0xfe, 0x4c,
-       0x5d, 0x49, 0x53, 0x61, 0x29, 0xf1, 0xdc, 0x82,
-       0x03, 0x96, 0x7d, 0x95, 0x4f, 0xdd, 0x3c, 0x0a,
-       0x64, 0x8a, 0x43, 0x2f, 0x95, 0x4a, 0xed, 0xdd
-};
-
-uint8_t rsa_q[] = {
-       0xd0, 0x56, 0x7a, 0x0a, 0xd5, 0x95, 0xa4, 0x85,
-       0x53, 0x35, 0xa1, 0x48, 0x07, 0x6a, 0x7c, 0x08,
-       0xe0, 0xfd, 0x4b, 0x88, 0x77, 0xa6, 0x15, 0x23,
-       0x0f, 0xbf, 0x14, 0x46, 0x11, 0xee, 0x95, 0xc7,
-       0x5e, 0x77, 0x65, 0xa2, 0xb5, 0x50, 0xdf, 0x19,
-       0x07, 0xc7, 0x72, 0xdb, 0x29, 0xf6, 0x54, 0x86,
-       0xe1, 0xb3, 0x97, 0x0a, 0x28, 0x64, 0x3a, 0x38,
-       0xa6, 0x7d, 0x13, 0xc3, 0x79, 0xaa, 0x56, 0xd9
+       .padding = RTE_CRYPTO_RSA_PADDING_PKCS1_5,
 };
 
-uint8_t rsa_dP[] = {
-       0xc5, 0x43, 0x0d, 0x82, 0x25, 0x8c, 0xab, 0x55,
-       0xbe, 0xc2, 0x7d, 0xfb, 0x4f, 0x68, 0x3f, 0x0e,
-       0x32, 0xec, 0xf5, 0xd6, 0x7b, 0x86, 0xc5, 0x75,
-       0x3c, 0xea, 0x51, 0x4a, 0x75, 0xa0, 0x2a, 0x50,
-       0x58, 0xbb, 0xe0, 0x1f, 0xca, 0x2e, 0x2a, 0x0e,
-       0x81, 0x48, 0x68, 0xd5, 0xeb, 0x30, 0x96, 0x0b,
-       0x33, 0xbd, 0xa8, 0xda, 0x6a, 0x17, 0xa3, 0xf2,
-       0xfd, 0xcb, 0x7b, 0x23, 0xe9, 0x5e, 0x9f, 0x99
-};
-uint8_t rsa_dQ[] = {
-       0xbe, 0xff, 0xf9, 0x05, 0x43, 0xc8, 0xdc, 0x3b,
-       0x0b, 0x0d, 0x28, 0xde, 0x73, 0x46, 0x11, 0x8e,
-       0xc6, 0x4e, 0x11, 0xd8, 0x7b, 0xf0, 0xfc, 0x81,
-       0xd7, 0x66, 0xd3, 0xbc, 0x65, 0xa6, 0x39, 0x14,
-       0xbd, 0xab, 0x72, 0xb7, 0x57, 0xc9, 0x5b, 0xaf,
-       0x83, 0xed, 0x3b, 0x84, 0x68, 0x15, 0x18, 0x6b,
-       0x4c, 0x32, 0xac, 0x6f, 0x38, 0x96, 0xa2, 0xb5,
-       0xdb, 0x14, 0xe2, 0x70, 0x9c, 0x73, 0x29, 0x09
-};
-
-uint8_t rsa_qInv[] = {
-       0x59, 0xbd, 0xb1, 0x37, 0xeb, 0x4e, 0xcf, 0x68,
-       0xe7, 0x85, 0x91, 0xbb, 0xc0, 0xdb, 0x8e, 0x41,
-       0x91, 0x4a, 0xc0, 0xb1, 0xc5, 0xe8, 0x91, 0xf6,
-       0xc7, 0x5a, 0x98, 0x1a, 0x8a, 0x0f, 0x45, 0xb2,
-       0x5b, 0xff, 0x7a, 0x2d, 0x98, 0x89, 0x55, 0xd9,
-       0xbf, 0x6e, 0xdd, 0x2d, 0xd4, 0xe8, 0x0a, 0xaa,
-       0xae, 0x2a, 0xc4, 0x16, 0xb5, 0xba, 0xe1, 0x69,
-       0x71, 0x94, 0xdd, 0xa0, 0xf5, 0x1e, 0x6d, 0xcc
-};
-
-/** rsa xform using exponent key */
-struct rte_crypto_asym_xform rsa_xform = {
-       .next = NULL,
+static const struct
+rsa_test_data_2 RSA_vector_128_20_3_None = {
+       .description =
+               "RSA Encryption Decryption (n=128, pt=20, e=3) EXP, QT",
        .xform_type = RTE_CRYPTO_ASYM_XFORM_RSA,
-       .rsa = {
-               .n = {
-                       .data = rsa_n,
-                       .length = sizeof(rsa_n)
+       .op_type_flags = 1UL << RTE_CRYPTO_ASYM_OP_ENCRYPT |
+                               1UL << RTE_CRYPTO_ASYM_OP_DECRYPT,
+       .message = {
+               .data = {
+                       0x00, 0x02, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
+                       0xbb, 0xbb, 0xbb, 0xbb, 0xf8, 0xba, 0x1a, 0x55,
+                       0xd0, 0x2f, 0x85, 0xae, 0x96, 0x7b, 0xb6, 0x2f,
+                       0xb6, 0xcd, 0xa8, 0xeb, 0x7e, 0x78, 0xa0, 0x50
                },
-               .e = {
-                       .data = rsa_e,
-                       .length = sizeof(rsa_e)
+               .len = 128,
+       },
+       .cipher = {
+               .data = {
+                       0x3D, 0x8D, 0x2F, 0x85, 0xC0, 0xB7, 0x21, 0x3E,
+                       0x5B, 0x4A, 0x96, 0xB2, 0x85, 0x35, 0xAF, 0x0C,
+                       0x62, 0xE9, 0x73, 0xEF, 0x77, 0x76, 0x19, 0xD5,
+                       0x92, 0xF7, 0x1D, 0xB0, 0x15, 0x69, 0x65, 0x82,
+                       0x32, 0x30, 0x4E, 0x29, 0xE7, 0x83, 0xAD, 0x23,
+                       0x66, 0xD9, 0x91, 0x9B, 0xFF, 0x01, 0x10, 0x3B,
+                       0xB2, 0xF8, 0x78, 0x14, 0xD2, 0x6E, 0x3C, 0x59,
+                       0x6E, 0x1A, 0x90, 0x3C, 0x5A, 0xB3, 0x0B, 0x60,
+                       0xE2, 0x71, 0xCC, 0xF5, 0x0C, 0x57, 0x19, 0x03,
+                       0x5B, 0x04, 0x46, 0x7E, 0x13, 0x5B, 0xFF, 0x2C,
+                       0x01, 0x19, 0x75, 0x86, 0x6A, 0xAE, 0x60, 0xFB,
+                       0x0A, 0x4C, 0x14, 0x1A, 0xBC, 0x0E, 0x86, 0xF1,
+                       0x13, 0x10, 0xB3, 0x03, 0x8E, 0x66, 0x6F, 0xA5,
+                       0x53, 0x80, 0x5A, 0x91, 0xE6, 0x7C, 0x3C, 0x38,
+                       0x15, 0xB6, 0x69, 0x3E, 0xF6, 0x54, 0xB0, 0x60,
+                       0x83, 0xE9, 0x2B, 0xF3, 0x26, 0x53, 0x3E, 0x11
                },
-               .key_type = RTE_RSA_KEY_TYPE_EXP,
-               .d = {
-                       .data = rsa_d,
-                       .length = sizeof(rsa_d)
-               }
-       }
-};
-
-/** rsa xform using quintuple key */
-struct rte_crypto_asym_xform rsa_xform_crt = {
-       .next = NULL,
-       .xform_type = RTE_CRYPTO_ASYM_XFORM_RSA,
-       .rsa = {
-               .n = {
-                       .data = rsa_n,
-                       .length = sizeof(rsa_n)
+               .len = 128,
+       },
+       .e = {
+               .data = {
+                       0x01, 0x00, 0x01
                },
-               .e = {
-                       .data = rsa_e,
-                       .length = sizeof(rsa_e)
+               .len = 3,
+       },
+       .d = {
+               .data = {
+                       0x24, 0xd7, 0xea, 0xf4, 0x7f, 0xe0, 0xca, 0x31,
+                       0x4d, 0xee, 0xc4, 0xa1, 0xbe, 0xab, 0x06, 0x61,
+                       0x32, 0xe7, 0x51, 0x46, 0x27, 0xdf, 0x72, 0xe9,
+                       0x6f, 0xa8, 0x4c, 0xd1, 0x26, 0xef, 0x65, 0xeb,
+                       0x67, 0xff, 0x5f, 0xa7, 0x3b, 0x25, 0xb9, 0x08,
+                       0x8e, 0xa0, 0x47, 0x56, 0xe6, 0x8e, 0xf9, 0xd3,
+                       0x18, 0x06, 0x3d, 0xc6, 0xb1, 0xf8, 0xdc, 0x1b,
+                       0x8d, 0xe5, 0x30, 0x54, 0x26, 0xac, 0x16, 0x3b,
+                       0x7b, 0xad, 0x46, 0x9e, 0x21, 0x6a, 0x57, 0xe6,
+                       0x81, 0x56, 0x1d, 0x2a, 0xc4, 0x39, 0x63, 0x67,
+                       0x81, 0x2c, 0xca, 0xcc, 0xf8, 0x42, 0x04, 0xbe,
+                       0xcf, 0x8f, 0x6c, 0x5b, 0x81, 0x46, 0xb9, 0xc7,
+                       0x62, 0x90, 0x87, 0x35, 0x03, 0x9b, 0x89, 0xcb,
+                       0x37, 0xbd, 0xf1, 0x1b, 0x99, 0xa1, 0x9a, 0x78,
+                       0xd5, 0x4c, 0xdd, 0x3f, 0x41, 0x0c, 0xb7, 0x1a,
+                       0xd9, 0x7b, 0x87, 0x5f, 0xbe, 0xb1, 0x83, 0x41
+               },
+               .len = 128,
+       },
+       .n = {
+               .data = {
+                       0xb3, 0xa1, 0xaf, 0xb7, 0x13, 0x08, 0x00, 0x0a,
+                       0x35, 0xdc, 0x2b, 0x20, 0x8d, 0xa1, 0xb5, 0xce,
+                       0x47, 0x8a, 0xc3, 0x80, 0xf4, 0x7d, 0x4a, 0xa2,
+                       0x62, 0xfd, 0x61, 0x7f, 0xb5, 0xa8, 0xde, 0x0a,
+                       0x17, 0x97, 0xa0, 0xbf, 0xdf, 0x56, 0x5a, 0x3d,
+                       0x51, 0x56, 0x4f, 0x70, 0x70, 0x3f, 0x63, 0x6a,
+                       0x44, 0x5b, 0xad, 0x84, 0x0d, 0x3f, 0x27, 0x6e,
+                       0x3b, 0x34, 0x91, 0x60, 0x14, 0xb9, 0xaa, 0x72,
+                       0xfd, 0xa3, 0x64, 0xd2, 0x03, 0xa7, 0x53, 0x87,
+                       0x9e, 0x88, 0x0b, 0xc1, 0x14, 0x93, 0x1a, 0x62,
+                       0xff, 0xb1, 0x5d, 0x74, 0xcd, 0x59, 0x63, 0x18,
+                       0x11, 0x3d, 0x4f, 0xba, 0x75, 0xd4, 0x33, 0x4e,
+                       0x23, 0x6b, 0x7b, 0x57, 0x44, 0xe1, 0xd3, 0x03,
+                       0x13, 0xa6, 0xf0, 0x8b, 0x60, 0xb0, 0x9e, 0xee,
+                       0x75, 0x08, 0x9d, 0x71, 0x63, 0x13, 0xcb, 0xa6,
+                       0x81, 0x92, 0x14, 0x03, 0x22, 0x2d, 0xde, 0x55
                },
-               .key_type = RTE_RSA_KEY_TYPE_QT,
-               .qt = {
-                       .p = {
-                               .data = rsa_p,
-                               .length = sizeof(rsa_p)
-                       },
-                       .q = {
-                               .data = rsa_q,
-                               .length = sizeof(rsa_q)
-                       },
-                       .dP = {
-                               .data = rsa_dP,
-                               .length = sizeof(rsa_dP)
-                       },
-                       .dQ = {
-                               .data = rsa_dQ,
-                               .length = sizeof(rsa_dQ)
-                       },
-                       .qInv = {
-                               .data = rsa_qInv,
-                               .length = sizeof(rsa_qInv)
-                       },
-               }
-       }
+               .len = 128,
+       },
+       .p = {
+               .data = {
+                       0xdc, 0xba, 0x00, 0x01, 0x57, 0x93, 0xe3, 0x05,
+                       0xed, 0x61, 0x9a, 0xa3, 0xaf, 0x6a, 0xd3, 0x47,
+                       0x8f, 0x2d, 0x1e, 0x7f, 0x4d, 0x60, 0xc8, 0x8d,
+                       0x34, 0xb8, 0x17, 0x84, 0xbc, 0xd4, 0xe9, 0x79,
+                       0x95, 0x75, 0x19, 0x37, 0xe0, 0xcc, 0xfe, 0x4c,
+                       0x5d, 0x49, 0x53, 0x61, 0x29, 0xf1, 0xdc, 0x82,
+                       0x03, 0x96, 0x7d, 0x95, 0x4f, 0xdd, 0x3c, 0x0a,
+                       0x64, 0x8a, 0x43, 0x2f, 0x95, 0x4a, 0xed, 0xdd
+               },
+               .len = 64,
+       },
+       .q = {
+               .data = {
+                       0xd0, 0x56, 0x7a, 0x0a, 0xd5, 0x95, 0xa4, 0x85,
+                       0x53, 0x35, 0xa1, 0x48, 0x07, 0x6a, 0x7c, 0x08,
+                       0xe0, 0xfd, 0x4b, 0x88, 0x77, 0xa6, 0x15, 0x23,
+                       0x0f, 0xbf, 0x14, 0x46, 0x11, 0xee, 0x95, 0xc7,
+                       0x5e, 0x77, 0x65, 0xa2, 0xb5, 0x50, 0xdf, 0x19,
+                       0x07, 0xc7, 0x72, 0xdb, 0x29, 0xf6, 0x54, 0x86,
+                       0xe1, 0xb3, 0x97, 0x0a, 0x28, 0x64, 0x3a, 0x38,
+                       0xa6, 0x7d, 0x13, 0xc3, 0x79, 0xaa, 0x56, 0xd9
+               },
+               .len = 64,
+       },
+       .dP = {
+               .data = {
+                       0xc5, 0x43, 0x0d, 0x82, 0x25, 0x8c, 0xab, 0x55,
+                       0xbe, 0xc2, 0x7d, 0xfb, 0x4f, 0x68, 0x3f, 0x0e,
+                       0x32, 0xec, 0xf5, 0xd6, 0x7b, 0x86, 0xc5, 0x75,
+                       0x3c, 0xea, 0x51, 0x4a, 0x75, 0xa0, 0x2a, 0x50,
+                       0x58, 0xbb, 0xe0, 0x1f, 0xca, 0x2e, 0x2a, 0x0e,
+                       0x81, 0x48, 0x68, 0xd5, 0xeb, 0x30, 0x96, 0x0b,
+                       0x33, 0xbd, 0xa8, 0xda, 0x6a, 0x17, 0xa3, 0xf2,
+                       0xfd, 0xcb, 0x7b, 0x23, 0xe9, 0x5e, 0x9f, 0x99
+               },
+               .len = 64,
+       },
+       .dQ = {
+               .data = {
+                       0xbe, 0xff, 0xf9, 0x05, 0x43, 0xc8, 0xdc, 0x3b,
+                       0x0b, 0x0d, 0x28, 0xde, 0x73, 0x46, 0x11, 0x8e,
+                       0xc6, 0x4e, 0x11, 0xd8, 0x7b, 0xf0, 0xfc, 0x81,
+                       0xd7, 0x66, 0xd3, 0xbc, 0x65, 0xa6, 0x39, 0x14,
+                       0xbd, 0xab, 0x72, 0xb7, 0x57, 0xc9, 0x5b, 0xaf,
+                       0x83, 0xed, 0x3b, 0x84, 0x68, 0x15, 0x18, 0x6b,
+                       0x4c, 0x32, 0xac, 0x6f, 0x38, 0x96, 0xa2, 0xb5,
+                       0xdb, 0x14, 0xe2, 0x70, 0x9c, 0x73, 0x29, 0x09
+               },
+               .len = 64,
+       },
+       .qInv = {
+               .data = {
+                       0x59, 0xbd, 0xb1, 0x37, 0xeb, 0x4e, 0xcf, 0x68,
+                       0xe7, 0x85, 0x91, 0xbb, 0xc0, 0xdb, 0x8e, 0x41,
+                       0x91, 0x4a, 0xc0, 0xb1, 0xc5, 0xe8, 0x91, 0xf6,
+                       0xc7, 0x5a, 0x98, 0x1a, 0x8a, 0x0f, 0x45, 0xb2,
+                       0x5b, 0xff, 0x7a, 0x2d, 0x98, 0x89, 0x55, 0xd9,
+                       0xbf, 0x6e, 0xdd, 0x2d, 0xd4, 0xe8, 0x0a, 0xaa,
+                       0xae, 0x2a, 0xc4, 0x16, 0xb5, 0xba, 0xe1, 0x69,
+                       0x71, 0x94, 0xdd, 0xa0, 0xf5, 0x1e, 0x6d, 0xcc
+               },
+               .len = 64,
+       },
+       .padding = RTE_CRYPTO_RSA_PADDING_NONE,
 };
 
 #endif /* TEST_CRYPTODEV_RSA_TEST_VECTORS_H__ */
-- 
2.25.1

Reply via email to