]> git.droids-corp.org - dpdk.git/commitdiff
cryptodev: fix RSA key type name
authorArek Kusztal <arkadiuszx.kusztal@intel.com>
Fri, 18 Feb 2022 07:53:32 +0000 (07:53 +0000)
committerAkhil Goyal <gakhil@marvell.com>
Tue, 22 Feb 2022 19:21:20 +0000 (20:21 +0100)
This patch fixes misspelled RTE_RSA_KEY_TYPE_QT,
this will prevent checkpach from complaining wherever
change to RSA is being made.

Fixes: 26008aaed14c ("cryptodev: add asymmetric xform and op definitions")
Cc: stable@dpdk.org
Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
Acked-by: Akhil Goyal <gakhil@marvell.com>
app/test/test_cryptodev_asym.c
app/test/test_cryptodev_rsa_test_vectors.h
drivers/crypto/qat/qat_asym.c
lib/cryptodev/rte_crypto_asym.h

index 7cda8bb081f0d57d14e492968b5a92144e65c46e..573af2a537aa97f42f33762347d59faebd755c70 100644 (file)
@@ -549,7 +549,7 @@ test_one_case(const void *test_case, int sessionless)
                                                status = test_cryptodev_asym_op(
                                                        &testsuite_params,
                                                        &tc, test_msg, sessionless, i,
-                                                       RTE_RSA_KET_TYPE_QT);
+                                                       RTE_RSA_KEY_TYPE_QT);
                                        }
                                        if (status)
                                                break;
index 48a72e14925ebeef8604908dd97aeafd8b9efbb6..04539a1ecf8fe808c10ce049a918a015c41d4df9 100644 (file)
@@ -378,7 +378,7 @@ struct rte_crypto_asym_xform rsa_xform_crt = {
                        .data = rsa_e,
                        .length = sizeof(rsa_e)
                },
-               .key_type = RTE_RSA_KET_TYPE_QT,
+               .key_type = RTE_RSA_KEY_TYPE_QT,
                .qt = {
                        .p = {
                                .data = rsa_p,
index f46eefd4b3e2224b9f24f8dd6d996cdfabacf6d8..27ce0337a7e7574ef0ff6c16e5ce440956c49393 100644 (file)
@@ -97,7 +97,7 @@ static void qat_clear_arrays_by_alg(struct qat_asym_op_cookie *cookie,
                qat_clear_arrays(cookie, QAT_ASYM_MODINV_NUM_IN_PARAMS,
                                QAT_ASYM_MODINV_NUM_OUT_PARAMS, alg_size);
        else if (xform->xform_type == RTE_CRYPTO_ASYM_XFORM_RSA) {
-               if (xform->rsa.key_type == RTE_RSA_KET_TYPE_QT)
+               if (xform->rsa.key_type == RTE_RSA_KEY_TYPE_QT)
                        qat_clear_arrays_crt(cookie, alg_size);
                else {
                        qat_clear_arrays(cookie, QAT_ASYM_RSA_NUM_IN_PARAMS,
@@ -370,7 +370,7 @@ qat_asym_fill_arrays(struct rte_crypto_asym_op *asym_op,
                                        return -(EINVAL);
                                }
                        }
-                       if (xform->rsa.key_type == RTE_RSA_KET_TYPE_QT) {
+                       if (xform->rsa.key_type == RTE_RSA_KEY_TYPE_QT) {
 
                                qat_req->input_param_count =
                                                QAT_ASYM_RSA_QT_NUM_IN_PARAMS;
index 2eb0f001e3caaa868373d56afeb775949e9f151d..cd24d4b07bdc4923f09136e90f4fdc73c2e863fd 100644 (file)
@@ -145,7 +145,7 @@ enum rte_crypto_rsa_padding_type {
 enum rte_crypto_rsa_priv_key_type {
        RTE_RSA_KEY_TYPE_EXP,
        /**< RSA private key is an exponent */
-       RTE_RSA_KET_TYPE_QT,
+       RTE_RSA_KEY_TYPE_QT,
        /**< RSA private key is in quintuple format
         * See rte_crypto_rsa_priv_key_qt
         */