From: Tejasree Kondoj Date: Mon, 6 Dec 2021 11:07:56 +0000 (+0530) Subject: test/crypto: add IPsec AES-CTR cases X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=1567deea83ae70b89f64ce4e1ecc312392e7d767;p=dpdk.git test/crypto: add IPsec AES-CTR cases Add IPsec AES-CTR test case for combined mode in lookaside IPsec testsuite. Signed-off-by: Tejasree Kondoj Acked-by: Akhil Goyal --- diff --git a/app/test/test_cryptodev_security_ipsec.h b/app/test/test_cryptodev_security_ipsec.h index 3565a8c5d2..3376d082c1 100644 --- a/app/test/test_cryptodev_security_ipsec.h +++ b/app/test/test_cryptodev_security_ipsec.h @@ -103,6 +103,21 @@ static const struct crypto_param cipher_list[] = { .alg.cipher = RTE_CRYPTO_CIPHER_AES_CBC, .key_length = 16, }, + { + .type = RTE_CRYPTO_SYM_XFORM_CIPHER, + .alg.cipher = RTE_CRYPTO_CIPHER_AES_CTR, + .key_length = 16, + }, + { + .type = RTE_CRYPTO_SYM_XFORM_CIPHER, + .alg.cipher = RTE_CRYPTO_CIPHER_AES_CTR, + .key_length = 24, + }, + { + .type = RTE_CRYPTO_SYM_XFORM_CIPHER, + .alg.cipher = RTE_CRYPTO_CIPHER_AES_CTR, + .key_length = 32, + }, }; static const struct crypto_param auth_list[] = {