cryptodev: fix RSA key type name

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>
This commit is contained in:
Arek Kusztal 2022-02-18 07:53:32 +00:00 committed by Akhil Goyal
parent 03944ff5e3
commit 3387912f5c
4 changed files with 5 additions and 5 deletions

View File

@ -549,7 +549,7 @@ test_one_case(const void *test_case, int sessionless)
status = test_cryptodev_asym_op( status = test_cryptodev_asym_op(
&testsuite_params, &testsuite_params,
&tc, test_msg, sessionless, i, &tc, test_msg, sessionless, i,
RTE_RSA_KET_TYPE_QT); RTE_RSA_KEY_TYPE_QT);
} }
if (status) if (status)
break; break;

View File

@ -378,7 +378,7 @@ struct rte_crypto_asym_xform rsa_xform_crt = {
.data = rsa_e, .data = rsa_e,
.length = sizeof(rsa_e) .length = sizeof(rsa_e)
}, },
.key_type = RTE_RSA_KET_TYPE_QT, .key_type = RTE_RSA_KEY_TYPE_QT,
.qt = { .qt = {
.p = { .p = {
.data = rsa_p, .data = rsa_p,

View 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_clear_arrays(cookie, QAT_ASYM_MODINV_NUM_IN_PARAMS,
QAT_ASYM_MODINV_NUM_OUT_PARAMS, alg_size); QAT_ASYM_MODINV_NUM_OUT_PARAMS, alg_size);
else if (xform->xform_type == RTE_CRYPTO_ASYM_XFORM_RSA) { 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); qat_clear_arrays_crt(cookie, alg_size);
else { else {
qat_clear_arrays(cookie, QAT_ASYM_RSA_NUM_IN_PARAMS, 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); 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_req->input_param_count =
QAT_ASYM_RSA_QT_NUM_IN_PARAMS; QAT_ASYM_RSA_QT_NUM_IN_PARAMS;

View File

@ -145,7 +145,7 @@ enum rte_crypto_rsa_padding_type {
enum rte_crypto_rsa_priv_key_type { enum rte_crypto_rsa_priv_key_type {
RTE_RSA_KEY_TYPE_EXP, RTE_RSA_KEY_TYPE_EXP,
/**< RSA private key is an exponent */ /**< RSA private key is an exponent */
RTE_RSA_KET_TYPE_QT, RTE_RSA_KEY_TYPE_QT,
/**< RSA private key is in quintuple format /**< RSA private key is in quintuple format
* See rte_crypto_rsa_priv_key_qt * See rte_crypto_rsa_priv_key_qt
*/ */