test/mbuf: fix a dynamic flag log
[dpdk.git] / app / test / test_cryptodev_asym.c
index 0f6fc57..b8e0500 100644 (file)
@@ -1,5 +1,6 @@
 /* SPDX-License-Identifier: BSD-3-Clause
  * Copyright(c) 2018 Cavium Networks
+ * Copyright (c) 2019 Intel Corporation
  */
 
 #include <rte_bus_vdev.h>
@@ -17,6 +18,8 @@
 #include "test_cryptodev.h"
 #include "test_cryptodev_dh_test_vectors.h"
 #include "test_cryptodev_dsa_test_vectors.h"
+#include "test_cryptodev_ecdsa_test_vectors.h"
+#include "test_cryptodev_ecpm_test_vectors.h"
 #include "test_cryptodev_mod_test_vectors.h"
 #include "test_cryptodev_rsa_test_vectors.h"
 #include "test_cryptodev_asym_util.h"
 #define TEST_NUM_BUFS 10
 #define TEST_NUM_SESSIONS 4
 
+#ifndef TEST_DATA_SIZE
+       #define TEST_DATA_SIZE 4096
+#endif
+#define ASYM_TEST_MSG_LEN 256
+#define TEST_VECTOR_SIZE 256
+
 static int gbl_driver_id;
 struct crypto_testsuite_params {
        struct rte_mempool *op_mpool;
@@ -40,77 +49,63 @@ struct crypto_unittest_params {
        struct rte_crypto_op *op;
 };
 
+union test_case_structure {
+       struct modex_test_data modex;
+       struct modinv_test_data modinv;
+       struct rsa_test_data_2 rsa_data;
+};
+
+struct test_cases_array {
+       uint32_t size;
+       const void *address[TEST_VECTOR_SIZE];
+};
+static struct test_cases_array test_vector = {0, { NULL } };
+
+static uint32_t test_index;
+
 static struct crypto_testsuite_params testsuite_params = { NULL };
 
 static int
-test_rsa_sign_verify(void)
+queue_ops_rsa_sign_verify(struct rte_cryptodev_asym_session *sess)
 {
        struct crypto_testsuite_params *ts_params = &testsuite_params;
        struct rte_mempool *op_mpool = ts_params->op_mpool;
-       struct rte_mempool *sess_mpool = ts_params->session_mpool;
        uint8_t dev_id = ts_params->valid_devs[0];
-       struct rte_crypto_asym_op *asym_op = NULL;
-       struct rte_crypto_op *op = NULL, *result_op = NULL;
-       struct rte_cryptodev_asym_session *sess = NULL;
+       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;
-       uint8_t output_buf[TEST_DATA_SIZE] = {0};
-       uint8_t input_buf[TEST_DATA_SIZE] = {0};
-
-       sess = rte_cryptodev_asym_session_create(sess_mpool);
-
-       if (!sess) {
-               RTE_LOG(ERR, USER1, "line %u "
-                               "FAILED: %s", __LINE__,
-                               "Session creation failed");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       if (rte_cryptodev_asym_session_init(dev_id, sess, &rsa_xform,
-                               sess_mpool) < 0) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__, "unabled to config sym session");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
 
-       /* set up crypto op data structure */
+       /* Set up crypto op data structure */
        op = rte_crypto_op_alloc(op_mpool, RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
        if (!op) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__,
-                               "Failed to allocate asymmetric crypto "
-                               "operation struct");
-               status = TEST_FAILED;
-               goto error_exit;
+               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;
 
-       memcpy(input_buf, &rsaplaintext.data,
-                       rsaplaintext.len);
-       asym_op->rsa.message.data = input_buf;
+       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.pad = RTE_CRYPTO_RSA_PKCS1_V1_5_BT1;
+       asym_op->rsa.pad = RTE_CRYPTO_RSA_PADDING_PKCS1_5;
 
        debug_hexdump(stdout, "message", asym_op->rsa.message.data,
-                       asym_op->rsa.message.length);
+                     asym_op->rsa.message.length);
 
-       /* attach asymmetric crypto session to crypto operations */
+       /* Attach asymmetric crypto session to crypto operations */
        rte_crypto_op_attach_asym_session(op, sess);
 
-       RTE_LOG(DEBUG, USER1, "Process ASYM operation");
+       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,
-                               "line %u FAILED: %s",
-                               __LINE__, "Error sending packet for operation");
+               RTE_LOG(ERR, USER1, "Error sending packet for sign\n");
                status = TEST_FAILED;
                goto error_exit;
        }
@@ -119,25 +114,22 @@ test_rsa_sign_verify(void)
                rte_pause();
 
        if (result_op == NULL) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__, "Failed to process asym crypto op");
+               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->rsa.sign.length);
        asym_op = result_op->asym;
 
        /* Verify sign */
        asym_op->rsa.op_type = RTE_CRYPTO_ASYM_OP_VERIFY;
-       asym_op->rsa.pad = RTE_CRYPTO_RSA_PKCS1_V1_5_BT2;
+       asym_op->rsa.pad = RTE_CRYPTO_RSA_PADDING_PKCS1_5;
 
        /* Process crypto operation */
        if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__, "Error sending packet for operation");
+               RTE_LOG(ERR, USER1, "Error sending packet for verify\n");
                status = TEST_FAILED;
                goto error_exit;
        }
@@ -146,103 +138,65 @@ test_rsa_sign_verify(void)
                rte_pause();
 
        if (result_op == NULL) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__, "Failed to process asym crypto op");
+               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,
-                               "line %u FAILED: %s",
-                               __LINE__, "Failed to process asym crypto op");
+               RTE_LOG(ERR, USER1, "Failed to process sign-verify op\n");
                status = TEST_FAILED;
-               goto error_exit;
        }
 
 error_exit:
 
-       if (sess) {
-               rte_cryptodev_asym_session_clear(dev_id, sess);
-               rte_cryptodev_asym_session_free(sess);
-       }
-
-       if (op)
-               rte_crypto_op_free(op);
-
-       TEST_ASSERT_EQUAL(status, 0, "Test failed");
+       rte_crypto_op_free(op);
 
        return status;
 }
 
 static int
-test_rsa_enc_dec(void)
+queue_ops_rsa_enc_dec(struct rte_cryptodev_asym_session *sess)
 {
        struct crypto_testsuite_params *ts_params = &testsuite_params;
        struct rte_mempool *op_mpool = ts_params->op_mpool;
-       struct rte_mempool *sess_mpool = ts_params->session_mpool;
        uint8_t dev_id = ts_params->valid_devs[0];
-       struct rte_crypto_asym_op *asym_op = NULL;
-       struct rte_crypto_op *op = NULL, *result_op = NULL;
-       struct rte_cryptodev_asym_session *sess = NULL;
-       int status = TEST_SUCCESS;
-       uint8_t input_buf[TEST_DATA_SIZE] = {0};
-
-       sess = rte_cryptodev_asym_session_create(sess_mpool);
-
-       if (!sess) {
-               RTE_LOG(ERR, USER1, "line %u "
-                               "FAILED: %s", __LINE__,
-                               "Session creation failed");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
-
-       if (rte_cryptodev_asym_session_init(dev_id, sess, &rsa_xform,
-                               sess_mpool) < 0) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__, "unabled to config sym session");
-               status = TEST_FAILED;
-               goto error_exit;
-       }
+       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 */
+       /* Set up crypto op data structure */
        op = rte_crypto_op_alloc(op_mpool, RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
        if (!op) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__,
-                               "Failed to allocate asymmetric crypto "
-                               "operation struct");
-               status = TEST_FAILED;
-               goto error_exit;
+               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 */
+
+       /* Compute encryption on the test vector */
        asym_op->rsa.op_type = RTE_CRYPTO_ASYM_OP_ENCRYPT;
 
-       memcpy(input_buf, rsaplaintext.data,
-                       rsaplaintext.len);
-       asym_op->rsa.message.data = input_buf;
+       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.pad = RTE_CRYPTO_RSA_PKCS1_V1_5_BT2;
+       asym_op->rsa.pad = RTE_CRYPTO_RSA_PADDING_PKCS1_5;
 
        debug_hexdump(stdout, "message", asym_op->rsa.message.data,
-                       asym_op->rsa.message.length);
+                     asym_op->rsa.message.length);
 
-       /* attach asymmetric crypto session to crypto operations */
+       /* Attach asymmetric crypto session to crypto operations */
        rte_crypto_op_attach_asym_session(op, sess);
 
-       RTE_LOG(DEBUG, USER1, "Process ASYM operation");
+       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,
-                               "line %u FAILED: %s",
-                               __LINE__, "Error sending packet for operation");
+               RTE_LOG(ERR, USER1, "Error sending packet for encryption\n");
                status = TEST_FAILED;
                goto error_exit;
        }
@@ -251,24 +205,22 @@ test_rsa_enc_dec(void)
                rte_pause();
 
        if (result_op == NULL) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__, "Failed to process asym crypto op");
+               RTE_LOG(ERR, USER1, "Failed to process encryption op\n");
                status = TEST_FAILED;
                goto error_exit;
        }
        debug_hexdump(stdout, "encrypted message", asym_op->rsa.message.data,
-                       asym_op->rsa.message.length);
+                     asym_op->rsa.message.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.pad = RTE_CRYPTO_RSA_PKCS1_V1_5_BT1;
+       asym_op->rsa.pad = RTE_CRYPTO_RSA_PADDING_PKCS1_5;
 
        /* Process crypto operation */
        if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__, "Error sending packet for operation");
+               RTE_LOG(ERR, USER1, "Error sending packet for decryption\n");
                status = TEST_FAILED;
                goto error_exit;
        }
@@ -277,125 +229,714 @@ test_rsa_enc_dec(void)
                rte_pause();
 
        if (result_op == NULL) {
-               RTE_LOG(ERR, USER1,
-                               "line %u FAILED: %s",
-                               __LINE__, "Failed to process asym crypto op");
+               RTE_LOG(ERR, USER1, "Failed to process decryption op\n");
                status = TEST_FAILED;
                goto error_exit;
        }
        status = TEST_SUCCESS;
-       int ret = 0;
        ret = rsa_verify(&rsaplaintext, result_op);
        if (ret)
                status = TEST_FAILED;
 
 error_exit:
 
-       if (sess) {
-               rte_cryptodev_asym_session_clear(dev_id, sess);
-               rte_cryptodev_asym_session_free(sess);
-       }
-
-       if (op)
-               rte_crypto_op_free(op);
+       rte_crypto_op_free(op);
 
-       TEST_ASSERT_EQUAL(status, 0, "Test failed");
+       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
-testsuite_setup(void)
+test_cryptodev_asym_op(struct crypto_testsuite_params *ts_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 crypto_testsuite_params *ts_params = &testsuite_params;
-       struct rte_cryptodev_info info;
-       uint32_t i = 0, nb_devs, dev_id;
-       int ret;
-       uint16_t qp_id;
+       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;
+       struct rte_cryptodev_asym_session *sess = NULL;
+       struct rte_cryptodev_asym_capability_idx cap_idx;
+       const struct rte_cryptodev_asymmetric_xform_capability *capability;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       uint8_t input[TEST_DATA_SIZE] = {0};
+       uint8_t *result = NULL;
 
-       memset(ts_params, 0, sizeof(*ts_params));
+       int status = TEST_SUCCESS;
 
-       ts_params->op_mpool = rte_crypto_op_pool_create(
-                       "CRYPTO_ASYM_OP_POOL",
-                       RTE_CRYPTO_OP_TYPE_ASYMMETRIC,
-                       TEST_NUM_BUFS, 0,
-                       0,
-                       rte_socket_id());
-       if (ts_params->op_mpool == NULL) {
-               RTE_LOG(ERR, USER1, "Can't create ASYM_CRYPTO_OP_POOL\n");
-               return TEST_FAILED;
+       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 -ENOTSUP;
        }
 
-       /* Create an OPENSSL device if required */
-       if (gbl_driver_id == rte_cryptodev_driver_id_get(
-                       RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD))) {
-               nb_devs = rte_cryptodev_device_count_by_driver(
-                               rte_cryptodev_driver_id_get(
-                               RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD)));
-               if (nb_devs < 1) {
-                       ret = rte_vdev_init(
-                               RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD),
-                               NULL);
+       /* Generate crypto op data structure */
+       op = rte_crypto_op_alloc(ts_params->op_mpool,
+               RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
 
-                       TEST_ASSERT(ret == 0, "Failed to create "
-                               "instance of pmd : %s",
-                               RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD));
+       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.pad = 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) {
+               sess = rte_cryptodev_asym_session_create(ts_params->session_mpool);
+               if (!sess) {
+                       snprintf(test_msg, ASYM_TEST_MSG_LEN,
+                                       "line %u "
+                                       "FAILED: %s", __LINE__,
+                                       "Session creation failed");
+                       status = TEST_FAILED;
+                       goto error_exit;
+               }
+
+               if (rte_cryptodev_asym_session_init(dev_id, sess, &xform_tc,
+                               ts_params->session_mpool) < 0) {
+                       snprintf(test_msg, ASYM_TEST_MSG_LEN,
+                                       "line %u FAILED: %s",
+                                       __LINE__, "unabled to config sym session");
+                       status = 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");
 
-       nb_devs = rte_cryptodev_count();
-       if (nb_devs < 1) {
-               RTE_LOG(ERR, USER1, "No crypto devices found?\n");
-               return TEST_FAILED;
+       /* 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;
        }
 
-       /* Create list of valid crypto devs */
-       for (i = 0; i < nb_devs; i++) {
-               rte_cryptodev_info_get(i, &info);
-               if (info.driver_id == gbl_driver_id)
-                       ts_params->valid_devs[ts_params->valid_dev_count++] = i;
+       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 (ts_params->valid_dev_count < 1)
-               return TEST_FAILED;
+       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;
+       }
 
-       /* Set up all the qps on the first of the valid devices found */
+       if (!sessionless)
+               snprintf(test_msg, ASYM_TEST_MSG_LEN, "PASS");
+       else
+               snprintf(test_msg, ASYM_TEST_MSG_LEN, "SESSIONLESS PASS");
 
-       dev_id = ts_params->valid_devs[0];
+error_exit:
+               if (sess != NULL) {
+                       rte_cryptodev_asym_session_clear(dev_id, sess);
+                       rte_cryptodev_asym_session_free(sess);
+               }
 
-       rte_cryptodev_info_get(dev_id, &info);
+               if (op != NULL)
+                       rte_crypto_op_free(op);
 
-       /* check if device support asymmetric, skip if not */
-       if (!(info.feature_flags &
-                               RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO)) {
-               RTE_LOG(ERR, USER1, "Device doesn't support asymmetric. "
-                               "Test Skipped.\n");
-               return TEST_FAILED;
-       }
+               if (result != NULL)
+                       rte_free(result);
 
-       /* configure device with num qp */
-       ts_params->conf.nb_queue_pairs = info.max_nb_queue_pairs;
-       ts_params->conf.socket_id = SOCKET_ID_ANY;
-       TEST_ASSERT_SUCCESS(rte_cryptodev_configure(dev_id,
-                       &ts_params->conf),
-                       "Failed to configure cryptodev %u with %u qps",
-                       dev_id, ts_params->conf.nb_queue_pairs);
+       return status;
+}
 
-       /* configure qp */
-       ts_params->qp_conf.nb_descriptors = DEFAULT_NUM_OPS_INFLIGHT;
-       ts_params->qp_conf.mp_session = ts_params->session_mpool;
-       ts_params->qp_conf.mp_session_private = ts_params->session_mpool;
-       for (qp_id = 0; qp_id < info.max_nb_queue_pairs; qp_id++) {
-               TEST_ASSERT_SUCCESS(rte_cryptodev_queue_pair_setup(
-                       dev_id, qp_id, &ts_params->qp_conf,
-                       rte_cryptodev_socket_id(dev_id)),
-                       "Failed to setup queue pair %u on cryptodev %u ASYM",
-                       qp_id, dev_id);
+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(&testsuite_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(
+                                                       &testsuite_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(
+                                                       &testsuite_params,
+                                                       &tc, test_msg, sessionless, i,
+                                                       RTE_RSA_KET_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 MODEX vector*/
+       v_size = RTE_DIM(modex_test_case);
+       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] = &modex_test_case[i];
+               test_vector.size++;
+       }
+       /* Load MODINV vector*/
+       v_size = RTE_DIM(modinv_test_case);
+       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] = &modinv_test_case[i];
+               test_vector.size++;
+       }
+       /* 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;
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       uint32_t i = 0;
+       uint8_t dev_id = ts_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 crypto_testsuite_params *ts_params = &testsuite_params;
+       struct rte_mempool *sess_mpool = ts_params->session_mpool;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       struct rte_cryptodev_asym_session *sess;
+       struct rte_cryptodev_info dev_info;
+       int 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 -ENOTSUP;
+       }
+
+       sess = rte_cryptodev_asym_session_create(sess_mpool);
+
+       if (!sess) {
+               RTE_LOG(ERR, USER1, "Session creation failed for "
+                       "sign_verify\n");
+               return TEST_FAILED;
+       }
+
+       if (rte_cryptodev_asym_session_init(dev_id, sess, &rsa_xform,
+                               sess_mpool) < 0) {
+               RTE_LOG(ERR, USER1, "Unable to config asym session for "
+                       "sign_verify\n");
+               status = TEST_FAILED;
+               goto error_exit;
+       }
+
+       status = queue_ops_rsa_sign_verify(sess);
+
+error_exit:
+
+       rte_cryptodev_asym_session_clear(dev_id, sess);
+       rte_cryptodev_asym_session_free(sess);
+
+       TEST_ASSERT_EQUAL(status, 0, "Test failed");
+
+       return status;
+}
+
+static int
+test_rsa_enc_dec(void)
+{
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       struct rte_mempool *sess_mpool = ts_params->session_mpool;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       struct rte_cryptodev_asym_session *sess;
+       struct rte_cryptodev_info dev_info;
+       int 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 -ENOTSUP;
+       }
+
+       sess = rte_cryptodev_asym_session_create(sess_mpool);
+
+       if (!sess) {
+               RTE_LOG(ERR, USER1, "Session creation failed for enc_dec\n");
+               return TEST_FAILED;
+       }
+
+       if (rte_cryptodev_asym_session_init(dev_id, sess, &rsa_xform,
+                               sess_mpool) < 0) {
+               RTE_LOG(ERR, USER1, "Unable to config asym session for "
+                       "enc_dec\n");
+               status = TEST_FAILED;
+               goto error_exit;
+       }
+
+       status = queue_ops_rsa_enc_dec(sess);
+
+error_exit:
+
+       rte_cryptodev_asym_session_clear(dev_id, sess);
+       rte_cryptodev_asym_session_free(sess);
+
+       TEST_ASSERT_EQUAL(status, 0, "Test failed");
+
+       return status;
+}
+
+static int
+test_rsa_sign_verify_crt(void)
+{
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       struct rte_mempool *sess_mpool = ts_params->session_mpool;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       struct rte_cryptodev_asym_session *sess;
+       struct rte_cryptodev_info dev_info;
+       int 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 -ENOTSUP;
+       }
+
+       sess = rte_cryptodev_asym_session_create(sess_mpool);
+
+       if (!sess) {
+               RTE_LOG(ERR, USER1, "Session creation failed for "
+                       "sign_verify_crt\n");
+               status = TEST_FAILED;
+               return status;
+       }
+
+       if (rte_cryptodev_asym_session_init(dev_id, sess, &rsa_xform_crt,
+                               sess_mpool) < 0) {
+               RTE_LOG(ERR, USER1, "Unable to config asym session for "
+                       "sign_verify_crt\n");
+               status = TEST_FAILED;
+               goto error_exit;
+       }
+       status = queue_ops_rsa_sign_verify(sess);
+
+error_exit:
+
+       rte_cryptodev_asym_session_clear(dev_id, sess);
+       rte_cryptodev_asym_session_free(sess);
+
+       TEST_ASSERT_EQUAL(status, 0, "Test failed");
+
+       return status;
+}
+
+static int
+test_rsa_enc_dec_crt(void)
+{
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       struct rte_mempool *sess_mpool = ts_params->session_mpool;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       struct rte_cryptodev_asym_session *sess;
+       struct rte_cryptodev_info dev_info;
+       int 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 -ENOTSUP;
+       }
+
+       sess = rte_cryptodev_asym_session_create(sess_mpool);
+
+       if (!sess) {
+               RTE_LOG(ERR, USER1, "Session creation failed for "
+                       "enc_dec_crt\n");
+               return TEST_FAILED;
+       }
+
+       if (rte_cryptodev_asym_session_init(dev_id, sess, &rsa_xform_crt,
+                               sess_mpool) < 0) {
+               RTE_LOG(ERR, USER1, "Unable to config asym session for "
+                       "enc_dec_crt\n");
+               status = TEST_FAILED;
+               goto error_exit;
+       }
+       status = queue_ops_rsa_enc_dec(sess);
+
+error_exit:
+
+       rte_cryptodev_asym_session_clear(dev_id, sess);
+       rte_cryptodev_asym_session_free(sess);
+
+       TEST_ASSERT_EQUAL(status, 0, "Test failed");
+
+       return status;
+}
+
+static int
+testsuite_setup(void)
+{
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       uint8_t valid_devs[RTE_CRYPTO_MAX_DEVS];
+       struct rte_cryptodev_info info;
+       int ret, dev_id = -1;
+       uint32_t i, nb_devs;
+       uint16_t qp_id;
+
+       memset(ts_params, 0, sizeof(*ts_params));
+
+       test_vector.size = 0;
+       load_test_vectors();
+
+       ts_params->op_mpool = rte_crypto_op_pool_create(
+                       "CRYPTO_ASYM_OP_POOL",
+                       RTE_CRYPTO_OP_TYPE_ASYMMETRIC,
+                       TEST_NUM_BUFS, 0,
+                       0,
+                       rte_socket_id());
+       if (ts_params->op_mpool == NULL) {
+               RTE_LOG(ERR, USER1, "Can't create ASYM_CRYPTO_OP_POOL\n");
+               return TEST_FAILED;
+       }
+
+       /* Create an OPENSSL device if required */
+       if (gbl_driver_id == rte_cryptodev_driver_id_get(
+                       RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD))) {
+               nb_devs = rte_cryptodev_device_count_by_driver(
+                               rte_cryptodev_driver_id_get(
+                               RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD)));
+               if (nb_devs < 1) {
+                       ret = rte_vdev_init(
+                               RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD),
+                               NULL);
+
+                       TEST_ASSERT(ret == 0, "Failed to create "
+                               "instance of pmd : %s",
+                               RTE_STR(CRYPTODEV_NAME_OPENSSL_PMD));
+               }
+       }
+
+       /* Get list of valid crypto devs */
+       nb_devs = rte_cryptodev_devices_get(
+                               rte_cryptodev_driver_name_get(gbl_driver_id),
+                               valid_devs, RTE_CRYPTO_MAX_DEVS);
+       if (nb_devs < 1) {
+               RTE_LOG(ERR, USER1, "No crypto devices found?\n");
+               return TEST_FAILED;
        }
 
-       /* setup asym session pool */
-       unsigned int session_size =
-               rte_cryptodev_asym_get_private_session_size(dev_id);
+       /*
+        * Get first valid asymmetric device found in test suite param and
+        * break
+        */
+       for (i = 0; i < nb_devs ; i++) {
+               rte_cryptodev_info_get(valid_devs[i], &info);
+               if (info.feature_flags & RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO) {
+                       dev_id = ts_params->valid_devs[0] = valid_devs[i];
+                       break;
+               }
+       }
+
+       if (dev_id == -1) {
+               RTE_LOG(ERR, USER1, "Device doesn't support asymmetric. "
+                       "Test skipped.\n");
+               return TEST_FAILED;
+       }
+
+       /* Set valid device count */
+       ts_params->valid_dev_count = nb_devs;
+
+       /* configure device with num qp */
+       ts_params->conf.nb_queue_pairs = info.max_nb_queue_pairs;
+       ts_params->conf.socket_id = SOCKET_ID_ANY;
+       ts_params->conf.ff_disable = RTE_CRYPTODEV_FF_SECURITY |
+                       RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO;
+       TEST_ASSERT_SUCCESS(rte_cryptodev_configure(dev_id,
+                       &ts_params->conf),
+                       "Failed to configure cryptodev %u with %u qps",
+                       dev_id, ts_params->conf.nb_queue_pairs);
+
+       /* configure qp */
+       ts_params->qp_conf.nb_descriptors = DEFAULT_NUM_OPS_INFLIGHT;
+       ts_params->qp_conf.mp_session = ts_params->session_mpool;
+       ts_params->qp_conf.mp_session_private = ts_params->session_mpool;
+       for (qp_id = 0; qp_id < info.max_nb_queue_pairs; qp_id++) {
+               TEST_ASSERT_SUCCESS(rte_cryptodev_queue_pair_setup(
+                       dev_id, qp_id, &ts_params->qp_conf,
+                       rte_cryptodev_socket_id(dev_id)),
+                       "Failed to setup queue pair %u on cryptodev %u ASYM",
+                       qp_id, dev_id);
+       }
+
+       /* setup asym session pool */
+       unsigned int session_size =
+               rte_cryptodev_asym_get_private_session_size(dev_id);
        /*
         * Create mempool with TEST_NUM_SESSIONS * 2,
         * to include the session headers
@@ -498,14 +1039,17 @@ static inline void print_asym_capa(
                case RTE_CRYPTO_ASYM_XFORM_MODEX:
                case RTE_CRYPTO_ASYM_XFORM_DH:
                case RTE_CRYPTO_ASYM_XFORM_DSA:
-                       printf(" modlen: min %d max %d increment %d\n",
+                       printf(" modlen: min %d max %d increment %d",
                                        capa->modlen.min,
                                        capa->modlen.max,
                                        capa->modlen.increment);
                break;
+               case RTE_CRYPTO_ASYM_XFORM_ECDSA:
+               case RTE_CRYPTO_ASYM_XFORM_ECPM:
                default:
                        break;
                }
+               printf("\n");
 }
 
 static int
@@ -940,11 +1484,12 @@ test_mod_inv(void)
        const struct rte_cryptodev_asymmetric_xform_capability *capability;
        uint8_t input[TEST_DATA_SIZE] = {0};
        int ret = 0;
+       uint8_t result[sizeof(mod_p)] = { 0 };
 
        if (rte_cryptodev_asym_get_xform_enum(
                &modinv_xform.xform_type, "modinv") < 0) {
                RTE_LOG(ERR, USER1,
-                                "Invalid ASYNC algorithm specified\n");
+                                "Invalid ASYM algorithm specified\n");
                return -1;
        }
 
@@ -952,12 +1497,18 @@ test_mod_inv(void)
        capability = rte_cryptodev_asym_capability_get(dev_id,
                                        &cap_idx);
 
+       if (capability == NULL) {
+               RTE_LOG(INFO, USER1,
+                       "Device doesn't support MOD INV. Test Skipped\n");
+               return -ENOTSUP;
+       }
+
        if (rte_cryptodev_asym_xform_capability_check_modlen(
                capability,
                modinv_xform.modinv.modulus.length)) {
                RTE_LOG(ERR, USER1,
-                                "Invalid MODULOUS length specified\n");
-                               return -1;
+                                "Invalid MODULUS length specified\n");
+                               return -ENOTSUP;
                }
 
        sess = rte_cryptodev_asym_session_create(sess_mpool);
@@ -993,6 +1544,8 @@ test_mod_inv(void)
        memcpy(input, base, sizeof(base));
        asym_op->modinv.base.data = input;
        asym_op->modinv.base.length = sizeof(base);
+       asym_op->modinv.result.data = result;
+       asym_op->modinv.result.length = sizeof(result);
 
        /* attach asymmetric crypto session to crypto operations */
        rte_crypto_op_attach_asym_session(op, sess);
@@ -1055,12 +1608,13 @@ test_mod_exp(void)
        const struct rte_cryptodev_asymmetric_xform_capability *capability;
        uint8_t input[TEST_DATA_SIZE] = {0};
        int ret = 0;
+       uint8_t result[sizeof(mod_p)] = { 0 };
 
        if (rte_cryptodev_asym_get_xform_enum(&modex_xform.xform_type,
                "modexp")
                < 0) {
                RTE_LOG(ERR, USER1,
-                               "Invalid ASYNC algorithm specified\n");
+                               "Invalid ASYM algorithm specified\n");
                return -1;
        }
 
@@ -1068,11 +1622,17 @@ test_mod_exp(void)
        cap_idx.type = modex_xform.xform_type;
        capability = rte_cryptodev_asym_capability_get(dev_id, &cap_idx);
 
+       if (capability == NULL) {
+               RTE_LOG(INFO, USER1,
+                       "Device doesn't support MOD EXP. Test Skipped\n");
+               return -ENOTSUP;
+       }
+
        if (rte_cryptodev_asym_xform_capability_check_modlen(
                        capability, modex_xform.modex.modulus.length)) {
                RTE_LOG(ERR, USER1,
-                               "Invalid MODULOUS length specified\n");
-                               return -1;
+                               "Invalid MODULUS length specified\n");
+                               return -ENOTSUP;
                }
 
        /* generate crypto op data structure */
@@ -1109,6 +1669,8 @@ test_mod_exp(void)
        memcpy(input, base, sizeof(base));
        asym_op->modex.base.data = input;
        asym_op->modex.base.length = sizeof(base);
+       asym_op->modex.result.data = result;
+       asym_op->modex.result.length = sizeof(result);
        /* attach asymmetric crypto session to crypto operations */
        rte_crypto_op_attach_asym_session(op, sess);
 
@@ -1335,6 +1897,391 @@ test_dsa(void)
        return status;
 }
 
+static int
+test_ecdsa_sign_verify(enum curve curve_id)
+{
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       struct rte_mempool *sess_mpool = ts_params->session_mpool;
+       struct rte_mempool *op_mpool = ts_params->op_mpool;
+       struct crypto_testsuite_ecdsa_params input_params;
+       struct rte_cryptodev_asym_session *sess = NULL;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       struct rte_crypto_op *result_op = NULL;
+       uint8_t output_buf_r[TEST_DATA_SIZE];
+       uint8_t output_buf_s[TEST_DATA_SIZE];
+       struct rte_crypto_asym_xform xform;
+       struct rte_crypto_asym_op *asym_op;
+       struct rte_cryptodev_info dev_info;
+       struct rte_crypto_op *op = NULL;
+       int status = TEST_SUCCESS, ret;
+
+       switch (curve_id) {
+       case SECP192R1:
+               input_params = ecdsa_param_secp192r1;
+               break;
+       case SECP224R1:
+               input_params = ecdsa_param_secp224r1;
+               break;
+       case SECP256R1:
+               input_params = ecdsa_param_secp256r1;
+               break;
+       case SECP384R1:
+               input_params = ecdsa_param_secp384r1;
+               break;
+       case SECP521R1:
+               input_params = ecdsa_param_secp521r1;
+               break;
+       default:
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Unsupported curve id\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       rte_cryptodev_info_get(dev_id, &dev_info);
+
+       sess = rte_cryptodev_asym_session_create(sess_mpool);
+       if (sess == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Session creation failed\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       /* Setup crypto op data structure */
+       op = rte_crypto_op_alloc(op_mpool, RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
+       if (op == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to allocate asymmetric crypto "
+                               "operation struct\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+       asym_op = op->asym;
+
+       /* Setup asym xform */
+       xform.next = NULL;
+       xform.xform_type = RTE_CRYPTO_ASYM_XFORM_ECDSA;
+       xform.ec.curve_id = input_params.curve;
+
+       if (rte_cryptodev_asym_session_init(dev_id, sess, &xform,
+                               sess_mpool) < 0) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Unable to config asym session\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       /* Attach asymmetric crypto session to crypto operations */
+       rte_crypto_op_attach_asym_session(op, sess);
+
+       /* Compute sign */
+
+       /* Populate op with operational details */
+       op->asym->ecdsa.op_type = RTE_CRYPTO_ASYM_OP_SIGN;
+       op->asym->ecdsa.message.data = input_params.digest.data;
+       op->asym->ecdsa.message.length = input_params.digest.length;
+       op->asym->ecdsa.k.data = input_params.scalar.data;
+       op->asym->ecdsa.k.length = input_params.scalar.length;
+       op->asym->ecdsa.pkey.data = input_params.pkey.data;
+       op->asym->ecdsa.pkey.length = input_params.pkey.length;
+
+       /* Init out buf */
+       op->asym->ecdsa.r.data = output_buf_r;
+       op->asym->ecdsa.s.data = output_buf_s;
+
+       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,
+                               "line %u FAILED: %s", __LINE__,
+                               "Error sending packet for operation\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
+               rte_pause();
+
+       if (result_op == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to process asym crypto op\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       if (result_op->status != RTE_CRYPTO_OP_STATUS_SUCCESS) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to process asym crypto op\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       asym_op = result_op->asym;
+
+       debug_hexdump(stdout, "r:",
+                       asym_op->ecdsa.r.data, asym_op->ecdsa.r.length);
+       debug_hexdump(stdout, "s:",
+                       asym_op->ecdsa.s.data, asym_op->ecdsa.s.length);
+
+       ret = verify_ecdsa_sign(input_params.sign_r.data,
+                               input_params.sign_s.data, result_op);
+       if (ret) {
+               status = TEST_FAILED;
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "ECDSA sign failed.\n");
+               goto exit;
+       }
+
+       /* Verify sign */
+
+       /* Populate op with operational details */
+       op->asym->ecdsa.op_type = RTE_CRYPTO_ASYM_OP_VERIFY;
+       op->asym->ecdsa.q.x.data = input_params.pubkey_qx.data;
+       op->asym->ecdsa.q.x.length = input_params.pubkey_qx.length;
+       op->asym->ecdsa.q.y.data = input_params.pubkey_qy.data;
+       op->asym->ecdsa.q.y.length = input_params.pubkey_qx.length;
+       op->asym->ecdsa.r.data = asym_op->ecdsa.r.data;
+       op->asym->ecdsa.r.length = asym_op->ecdsa.r.length;
+       op->asym->ecdsa.s.data = asym_op->ecdsa.s.data;
+       op->asym->ecdsa.s.length = asym_op->ecdsa.s.length;
+
+       /* Enqueue sign result for verify */
+       if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
+               status = TEST_FAILED;
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Error sending packet for operation\n");
+               goto exit;
+       }
+
+       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
+               rte_pause();
+
+       if (result_op == NULL) {
+               status = TEST_FAILED;
+               goto exit;
+       }
+       if (result_op->status != RTE_CRYPTO_OP_STATUS_SUCCESS) {
+               status = TEST_FAILED;
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "ECDSA verify failed.\n");
+               goto exit;
+       }
+
+exit:
+       if (sess != NULL) {
+               rte_cryptodev_asym_session_clear(dev_id, sess);
+               rte_cryptodev_asym_session_free(sess);
+       }
+       if (op != NULL)
+               rte_crypto_op_free(op);
+       return status;
+};
+
+static int
+test_ecdsa_sign_verify_all_curve(void)
+{
+       int status, overall_status = TEST_SUCCESS;
+       enum curve curve_id;
+       int test_index = 0;
+       const char *msg;
+
+       for (curve_id = SECP192R1; curve_id < END_OF_CURVE_LIST; curve_id++) {
+               status = test_ecdsa_sign_verify(curve_id);
+               if (status == TEST_SUCCESS) {
+                       msg = "succeeded";
+               } else {
+                       msg = "failed";
+                       overall_status = status;
+               }
+               printf("  %u) TestCase Sign/Veriy Curve %s  %s\n",
+                      test_index ++, curve[curve_id], msg);
+       }
+       return overall_status;
+}
+
+static int
+test_ecpm(enum curve curve_id)
+{
+       struct crypto_testsuite_params *ts_params = &testsuite_params;
+       struct rte_mempool *sess_mpool = ts_params->session_mpool;
+       struct rte_mempool *op_mpool = ts_params->op_mpool;
+       struct crypto_testsuite_ecpm_params input_params;
+       struct rte_cryptodev_asym_session *sess = NULL;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       struct rte_crypto_op *result_op = NULL;
+       uint8_t output_buf_x[TEST_DATA_SIZE];
+       uint8_t output_buf_y[TEST_DATA_SIZE];
+       struct rte_crypto_asym_xform xform;
+       struct rte_crypto_asym_op *asym_op;
+       struct rte_cryptodev_info dev_info;
+       struct rte_crypto_op *op = NULL;
+       int status = TEST_SUCCESS, ret;
+
+       switch (curve_id) {
+       case SECP192R1:
+               input_params = ecpm_param_secp192r1;
+               break;
+       case SECP224R1:
+               input_params = ecpm_param_secp224r1;
+               break;
+       case SECP256R1:
+               input_params = ecpm_param_secp256r1;
+               break;
+       case SECP384R1:
+               input_params = ecpm_param_secp384r1;
+               break;
+       case SECP521R1:
+               input_params = ecpm_param_secp521r1;
+               break;
+       default:
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Unsupported curve id\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       rte_cryptodev_info_get(dev_id, &dev_info);
+
+       sess = rte_cryptodev_asym_session_create(sess_mpool);
+       if (sess == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Session creation failed\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       /* Setup crypto op data structure */
+       op = rte_crypto_op_alloc(op_mpool, RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
+       if (op == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to allocate asymmetric crypto "
+                               "operation struct\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+       asym_op = op->asym;
+
+       /* Setup asym xform */
+       xform.next = NULL;
+       xform.xform_type = RTE_CRYPTO_ASYM_XFORM_ECPM;
+       xform.ec.curve_id = input_params.curve;
+
+       if (rte_cryptodev_asym_session_init(dev_id, sess, &xform,
+                               sess_mpool) < 0) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Unable to config asym session\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       /* Attach asymmetric crypto session to crypto operations */
+       rte_crypto_op_attach_asym_session(op, sess);
+
+       /* Populate op with operational details */
+       op->asym->ecpm.p.x.data = input_params.gen_x.data;
+       op->asym->ecpm.p.x.length = input_params.gen_x.length;
+       op->asym->ecpm.p.y.data = input_params.gen_y.data;
+       op->asym->ecpm.p.y.length = input_params.gen_y.length;
+       op->asym->ecpm.scalar.data = input_params.privkey.data;
+       op->asym->ecpm.scalar.length = input_params.privkey.length;
+
+       /* Init out buf */
+       op->asym->ecpm.r.x.data = output_buf_x;
+       op->asym->ecpm.r.y.data = output_buf_y;
+
+       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,
+                               "line %u FAILED: %s", __LINE__,
+                               "Error sending packet for operation\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
+               rte_pause();
+
+       if (result_op == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to process asym crypto op\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       if (result_op->status != RTE_CRYPTO_OP_STATUS_SUCCESS) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to process asym crypto op\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       asym_op = result_op->asym;
+
+       debug_hexdump(stdout, "r x:",
+                       asym_op->ecpm.r.x.data, asym_op->ecpm.r.x.length);
+       debug_hexdump(stdout, "r y:",
+                       asym_op->ecpm.r.y.data, asym_op->ecpm.r.y.length);
+
+       ret = verify_ecpm(input_params.pubkey_x.data,
+                               input_params.pubkey_y.data, result_op);
+       if (ret) {
+               status = TEST_FAILED;
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "EC Point Multiplication failed.\n");
+               goto exit;
+       }
+
+exit:
+       if (sess != NULL) {
+               rte_cryptodev_asym_session_clear(dev_id, sess);
+               rte_cryptodev_asym_session_free(sess);
+       }
+       if (op != NULL)
+               rte_crypto_op_free(op);
+       return status;
+}
+
+static int
+test_ecpm_all_curve(void)
+{
+       int status, overall_status = TEST_SUCCESS;
+       enum curve curve_id;
+       int test_index = 0;
+       const char *msg;
+
+       for (curve_id = SECP192R1; curve_id < END_OF_CURVE_LIST; curve_id++) {
+               status = test_ecpm(curve_id);
+               if (status == TEST_SUCCESS) {
+                       msg = "succeeded";
+               } else {
+                       msg = "failed";
+                       overall_status = status;
+               }
+               printf("  %u) TestCase EC Point Mul Curve %s  %s\n",
+                      test_index ++, curve[curve_id], msg);
+       }
+       return overall_status;
+}
 
 static struct unit_test_suite cryptodev_openssl_asym_testsuite  = {
        .suite_name = "Crypto Device OPENSSL ASYM Unit Test Suite",
@@ -1346,8 +2293,37 @@ static struct unit_test_suite cryptodev_openssl_asym_testsuite  = {
                TEST_CASE_ST(ut_setup, ut_teardown, test_dh_keygenration),
                TEST_CASE_ST(ut_setup, ut_teardown, test_rsa_enc_dec),
                TEST_CASE_ST(ut_setup, ut_teardown, test_rsa_sign_verify),
+               TEST_CASE_ST(ut_setup, ut_teardown, test_rsa_enc_dec_crt),
+               TEST_CASE_ST(ut_setup, ut_teardown, test_rsa_sign_verify_crt),
                TEST_CASE_ST(ut_setup, ut_teardown, test_mod_inv),
                TEST_CASE_ST(ut_setup, ut_teardown, test_mod_exp),
+               TEST_CASE_ST(ut_setup, ut_teardown, test_one_by_one),
+               TEST_CASES_END() /**< NULL terminate unit test array */
+       }
+};
+
+static struct unit_test_suite cryptodev_qat_asym_testsuite  = {
+       .suite_name = "Crypto Device QAT ASYM Unit Test Suite",
+       .setup = testsuite_setup,
+       .teardown = testsuite_teardown,
+       .unit_test_cases = {
+               TEST_CASE_ST(ut_setup, ut_teardown, test_one_by_one),
+               TEST_CASES_END() /**< NULL terminate unit test array */
+       }
+};
+
+static struct unit_test_suite cryptodev_octeontx_asym_testsuite  = {
+       .suite_name = "Crypto Device OCTEONTX ASYM Unit Test Suite",
+       .setup = testsuite_setup,
+       .teardown = testsuite_teardown,
+       .unit_test_cases = {
+               TEST_CASE_ST(ut_setup, ut_teardown, test_capability),
+               TEST_CASE_ST(ut_setup, ut_teardown, test_rsa_enc_dec_crt),
+               TEST_CASE_ST(ut_setup, ut_teardown, test_rsa_sign_verify_crt),
+               TEST_CASE_ST(ut_setup, ut_teardown, test_mod_exp),
+               TEST_CASE_ST(ut_setup, ut_teardown,
+                            test_ecdsa_sign_verify_all_curve),
+               TEST_CASE_ST(ut_setup, ut_teardown, test_ecpm_all_curve),
                TEST_CASES_END() /**< NULL terminate unit test array */
        }
 };
@@ -1368,5 +2344,61 @@ test_cryptodev_openssl_asym(void)
        return unit_test_suite_runner(&cryptodev_openssl_asym_testsuite);
 }
 
+static int
+test_cryptodev_qat_asym(void)
+{
+       gbl_driver_id = rte_cryptodev_driver_id_get(
+                       RTE_STR(CRYPTODEV_NAME_QAT_ASYM_PMD));
+
+       if (gbl_driver_id == -1) {
+               RTE_LOG(ERR, USER1, "QAT PMD must be loaded. Check if "
+                                   "CONFIG_RTE_LIBRTE_PMD_QAT_ASYM is enabled "
+                                   "in config file to run this testsuite.\n");
+               return TEST_FAILED;
+       }
+
+       return unit_test_suite_runner(&cryptodev_qat_asym_testsuite);
+}
+
+static int
+test_cryptodev_octeontx_asym(void)
+{
+       gbl_driver_id = rte_cryptodev_driver_id_get(
+                       RTE_STR(CRYPTODEV_NAME_OCTEONTX_SYM_PMD));
+       if (gbl_driver_id == -1) {
+               RTE_LOG(ERR, USER1, "OCTEONTX PMD must be loaded. Check if "
+                               "CONFIG_RTE_LIBRTE_PMD_OCTEONTX_CRYPTO is "
+                               "enabled in config file to run this "
+                               "testsuite.\n");
+               return TEST_FAILED;
+       }
+       return unit_test_suite_runner(&cryptodev_octeontx_asym_testsuite);
+}
+
+static int
+test_cryptodev_octeontx2_asym(void)
+{
+       gbl_driver_id = rte_cryptodev_driver_id_get(
+                       RTE_STR(CRYPTODEV_NAME_OCTEONTX2_PMD));
+       if (gbl_driver_id == -1) {
+               RTE_LOG(ERR, USER1, "OCTEONTX2 PMD must be loaded. Check if "
+                               "CONFIG_RTE_LIBRTE_PMD_OCTEONTX2_CRYPTO is "
+                               "enabled in config file to run this "
+                               "testsuite.\n");
+               return TEST_FAILED;
+       }
+
+       /* Use test suite registered for crypto_octeontx PMD */
+       return unit_test_suite_runner(&cryptodev_octeontx_asym_testsuite);
+}
+
 REGISTER_TEST_COMMAND(cryptodev_openssl_asym_autotest,
                                          test_cryptodev_openssl_asym);
+
+REGISTER_TEST_COMMAND(cryptodev_qat_asym_autotest, test_cryptodev_qat_asym);
+
+REGISTER_TEST_COMMAND(cryptodev_octeontx_asym_autotest,
+                                         test_cryptodev_octeontx_asym);
+
+REGISTER_TEST_COMMAND(cryptodev_octeontx2_asym_autotest,
+                                         test_cryptodev_octeontx2_asym);