cryptodev: fix missing SHA3 algorithm strings
SHA3 family algorithms were missing in the array of algorithm strings. Fixes: 1df800f89518 ("crypto/ccp: support SHA3 family") Cc: stable@dpdk.org Signed-off-by: Volodymyr Fialko <vfialko@marvell.com> Acked-by: Akhil Goyal <gakhil@marvell.com>
This commit is contained in:
parent
58e2cf4cf7
commit
6c55e2c3e6
@ -130,6 +130,15 @@ rte_crypto_auth_algorithm_strings[] = {
|
||||
[RTE_CRYPTO_AUTH_SHA512] = "sha2-512",
|
||||
[RTE_CRYPTO_AUTH_SHA512_HMAC] = "sha2-512-hmac",
|
||||
|
||||
[RTE_CRYPTO_AUTH_SHA3_224] = "sha3-224",
|
||||
[RTE_CRYPTO_AUTH_SHA3_224_HMAC] = "sha3-224-hmac",
|
||||
[RTE_CRYPTO_AUTH_SHA3_256] = "sha3-256",
|
||||
[RTE_CRYPTO_AUTH_SHA3_256_HMAC] = "sha3-256-hmac",
|
||||
[RTE_CRYPTO_AUTH_SHA3_384] = "sha3-384",
|
||||
[RTE_CRYPTO_AUTH_SHA3_384_HMAC] = "sha3-384-hmac",
|
||||
[RTE_CRYPTO_AUTH_SHA3_512] = "sha3-512",
|
||||
[RTE_CRYPTO_AUTH_SHA3_512_HMAC] = "sha3-512-hmac",
|
||||
|
||||
[RTE_CRYPTO_AUTH_KASUMI_F9] = "kasumi-f9",
|
||||
[RTE_CRYPTO_AUTH_SNOW3G_UIA2] = "snow3g-uia2",
|
||||
[RTE_CRYPTO_AUTH_ZUC_EIA3] = "zuc-eia3"
|
||||
|
Loading…
x
Reference in New Issue
Block a user