From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 92FC79208 for ; Wed, 7 Sep 2016 20:52:57 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 07 Sep 2016 11:52:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,296,1470726000"; d="scan'208";a="1052729778" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by fmsmga002.fm.intel.com with ESMTP; 07 Sep 2016 11:52:56 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.71]) by IRSMSX101.ger.corp.intel.com ([169.254.1.183]) with mapi id 14.03.0248.002; Wed, 7 Sep 2016 19:52:54 +0100 From: "De Lara Guarch, Pablo" To: "Azarewicz, PiotrX T" , "Doherty, Declan" , "dev@dpdk.org" CC: "Kerlin, MarcinX" Thread-Topic: [dpdk-dev] [PATCH 0/4] New crypto software based device Thread-Index: AQHR/2r2M00Zk5j8G0il+57B1UgnAqBucxqQ Date: Wed, 7 Sep 2016 18:52:54 +0000 Message-ID: References: <1472196117-21750-1-git-send-email-piotrx.t.azarewicz@intel.com> In-Reply-To: <1472196117-21750-1-git-send-email-piotrx.t.azarewicz@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNDc0MTY3ZWMtNjg0YS00Yjg3LWI0M2ItOTA1MTI1YTEyODYzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IjZkMW9zMERyZTBHakRBcWkzejlCd0RIb0JRXC9qNGZ3bk1WWEdVc0c0T1FjPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 0/4] New crypto software based device X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Sep 2016 18:52:58 -0000 Hi Piotr, > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Piotr Azarewicz > Sent: Friday, August 26, 2016 12:22 AM > To: Doherty, Declan; dev@dpdk.org > Cc: Kerlin, MarcinX > Subject: [dpdk-dev] [PATCH 0/4] New crypto software based device >=20 > From: Marcin Kerlin >=20 > This code provides the initial implementation of the libcrypto > poll mode driver. > All cryptography operations are using Openssl library crypto API. > Each algorithm uses EVP_ interface from openssl API - which > is recommended by Openssl maintainers. >=20 > For more information about how to use this driver, go to: > doc/guides/cryptodevs/libcrypto.rst >=20 > Slawomir Mrozowicz (2): > libcrypto_pmd: initial implementation of SW crypto device > lib/cryptodev: added support to libcrypto PMD >=20 > Piotr Azarewicz (1) > app/test: added tests for libcrypto PMD >=20 > Daniel Mrzyglod (1) > examples/l2fwd-crypto: updated example for libcrypto PMD >=20 > MAINTAINERS | 4 + > app/test/Makefile | 1 + > app/test/test_cryptodev.c | 1245 ++++++++++++++= +- > app/test/test_cryptodev.h | 24 + > app/test/test_cryptodev_aes.c | 42 +- > app/test/test_cryptodev_aes_test_vectors.h | 887 +++++++++++ > app/test/test_cryptodev_des_test_vectors.h | 754 ++++++++++ > app/test/test_cryptodev_hash_test_vectors.h | 439 ++++++ > app/test/test_cryptodev_kasumi_test_vectors.h | 12 +- > app/test/test_cryptodev_operations.c | 1576 > ++++++++++++++++++++ > app/test/test_cryptodev_operations.h | 141 ++ > app/test/test_cryptodev_perf.c | 699 ++++++++- > config/common_base | 6 + > doc/guides/cryptodevs/index.rst | 1 + > doc/guides/cryptodevs/libcrypto.rst | 109 ++ > drivers/crypto/Makefile | 1 + > drivers/crypto/libcrypto/Makefile | 60 + > drivers/crypto/libcrypto/rte_libcrypto_pmd.c | 936 ++++++++++++ > drivers/crypto/libcrypto/rte_libcrypto_pmd_ops.c | 638 ++++++++ > .../crypto/libcrypto/rte_libcrypto_pmd_private.h | 189 +++ > .../crypto/libcrypto/rte_pmd_libcrypto_version.map | 3 + > examples/l2fwd-crypto/main.c | 11 + > lib/librte_cryptodev/rte_cryptodev.h | 3 + > mk/rte.app.mk | 3 +- > 24 files changed, 7688 insertions(+), 96 deletions(-) > create mode 100644 app/test/test_cryptodev_aes_test_vectors.h > create mode 100644 app/test/test_cryptodev_des_test_vectors.h > create mode 100644 app/test/test_cryptodev_hash_test_vectors.h > create mode 100644 app/test/test_cryptodev_operations.c > create mode 100644 app/test/test_cryptodev_operations.h > create mode 100644 doc/guides/cryptodevs/libcrypto.rst > create mode 100644 drivers/crypto/libcrypto/Makefile > create mode 100644 drivers/crypto/libcrypto/rte_libcrypto_pmd.c > create mode 100644 drivers/crypto/libcrypto/rte_libcrypto_pmd_ops.c > create mode 100644 drivers/crypto/libcrypto/rte_libcrypto_pmd_private.h > create mode 100644 > drivers/crypto/libcrypto/rte_pmd_libcrypto_version.map >=20 > -- > 1.9.1 Could you send a v2 with a release notes update? Thanks, Pablo