From d59626753cd0cc17a749221b2589ac17546ba787 Mon Sep 17 00:00:00 2001 From: Arek Kusztal Date: Fri, 2 Dec 2016 14:16:00 +0000 Subject: [PATCH] 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 --- lib/librte_cryptodev/rte_crypto_sym.h | 4 ++++ 1 file changed, 4 insertions(+) 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 */ -- 2.20.1