From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arek Kusztal Subject: [PATCH 1/3] lib/librte_cryptodev: add DES CBC cipher algorithm Date: Fri, 2 Dec 2016 14:16:00 +0000 Message-ID: <1480688162-27474-2-git-send-email-arkadiuszx.kusztal@intel.com> References: <1480688162-27474-1-git-send-email-arkadiuszx.kusztal@intel.com> Cc: fiona.trahe@intel.com, pablo.de.lara.guarch@intel.com, john.griffin@intel.com, deepak.k.jain@intel.com, Arek Kusztal To: dev@dpdk.org Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 47278FA30 for ; Fri, 2 Dec 2016 15:16:11 +0100 (CET) In-Reply-To: <1480688162-27474-1-git-send-email-arkadiuszx.kusztal@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This commit adds DES CBC ciper algorithm to available algorithms Signed-off-by: Arek Kusztal --- 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 d694723..0e20b30 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.1.0