From: Fan Zhang Date: Fri, 3 Jun 2016 10:11:59 +0000 (+0100) Subject: examples/l2fwd-crypto: enable AES-CTR cipher algorithm X-Git-Tag: spdx-start~6825 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=10327fd0262bc65aa95c050369cc26bb01f81cfd;p=dpdk.git examples/l2fwd-crypto: enable AES-CTR cipher algorithm This patch enables AES counter mode algorithm support to l2fwd-crypto sample application. Signed-off-by: Fan Zhang Acked-by: Pablo de Lara --- diff --git a/examples/l2fwd-crypto/main.c b/examples/l2fwd-crypto/main.c index d18c813b18..66fc874df1 100644 --- a/examples/l2fwd-crypto/main.c +++ b/examples/l2fwd-crypto/main.c @@ -352,6 +352,7 @@ fill_supported_algorithm_tables(void) strcpy(supported_cipher_algo[i], "NOT_SUPPORTED"); strcpy(supported_cipher_algo[RTE_CRYPTO_CIPHER_AES_CBC], "AES_CBC"); + strcpy(supported_cipher_algo[RTE_CRYPTO_CIPHER_AES_CTR], "AES_CTR"); strcpy(supported_cipher_algo[RTE_CRYPTO_CIPHER_AES_GCM], "AES_GCM"); strcpy(supported_cipher_algo[RTE_CRYPTO_CIPHER_NULL], "NULL"); strcpy(supported_cipher_algo[RTE_CRYPTO_CIPHER_SNOW3G_UEA2], "SNOW3G_UEA2");