From: Arek Kusztal Date: Fri, 2 Dec 2016 14:16:00 +0000 (+0000) Subject: cryptodev: add DES CBC cipher algorithm X-Git-Tag: spdx-start~4719 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=d59626753cd0cc17a749221b2589ac17546ba787;p=dpdk.git cryptodev: add DES CBC cipher algorithm This commit adds DES CBC ciper algorithm to available algorithms Signed-off-by: Arek Kusztal Acked-by: Fiona Trahe --- diff --git a/lib/librte_cryptodev/rte_crypto_sym.h b/lib/librte_cryptodev/rte_crypto_sym.h index d694723e63..0e20b30402 100644 --- a/lib/librte_cryptodev/rte_crypto_sym.h +++ b/lib/librte_cryptodev/rte_crypto_sym.h @@ -105,7 +105,11 @@ enum rte_crypto_cipher_algorithm { RTE_CRYPTO_CIPHER_ZUC_EEA3, /**< ZUC algorithm in EEA3 mode */ + RTE_CRYPTO_CIPHER_DES_CBC, + /**< DES algorithm in CBC mode */ + RTE_CRYPTO_CIPHER_LIST_END + }; /** Symmetric Cipher Direction */