From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fan Zhang Subject: [PATCH v5 0/2] app/test: rework crypto AES unit test Date: Tue, 14 Jun 2016 10:57:17 +0100 Message-ID: <1465898239-65444-1-git-send-email-roy.fan.zhang@intel.com> References: <1465826893-20392-1-git-send-email-roy.fan.zhang@intel.com> Cc: declan.doherty@intel.com 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 F226172FD for ; Tue, 14 Jun 2016 11:57:21 +0200 (CEST) In-Reply-To: <1465826893-20392-1-git-send-email-roy.fan.zhang@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patchset reworks the crypto AES unit test by introducing a new unified test function. This patchset depends on the following patches/patchsets: "qat: fix phys address of content descriptor" (http://dpdk.org/dev/patchwork/patch/13137/) and "Add AES Counter mode support for AES-NI MB PMD" (http://dpdk.org/ml/archives/dev/2016-June/040222.html) v2 *fix session not freed after the test finished problem *remove l2fwd-crypto sample application patch v3 *fix clang compile error v4 *fix the misplaced commit in the v3 patchset v5 *squash several patches into one patch Fan Zhang (2): app/test: reworks the crypto AES unit test app/test: add crypto AES-CBC-128 HMAC-SHA224 and HMAC-SHA384 unit tests app/test/Makefile | 1 + app/test/test_cryptodev.c | 1613 ++---------------------- app/test/test_cryptodev_aes.c | 689 ++++++++++ app/test/test_cryptodev_aes.h | 1124 +++++++++++++++++ app/test/test_cryptodev_aes_ctr_test_vectors.h | 257 ---- 5 files changed, 1936 insertions(+), 1748 deletions(-) create mode 100644 app/test/test_cryptodev_aes.c create mode 100644 app/test/test_cryptodev_aes.h delete mode 100644 app/test/test_cryptodev_aes_ctr_test_vectors.h -- 2.5.5