From: Anoob Joseph <anoobj@marvell.com>
To: Akhil Goyal <akhil.goyal@nxp.com>,
Declan Doherty <declan.doherty@intel.com>,
Pablo de Lara <pablo.de.lara.guarch@intel.com>
Cc: Anoob Joseph <anoobj@marvell.com>,
Fiona Trahe <fiona.trahe@intel.com>,
Arek Kusztal <arkadiuszx.kusztal@intel.com>,
Jerin Jacob <jerinj@marvell.com>,
Narayana Prasad <pathreya@marvell.com>,
Shally Verma <shallyv@marvell.com>,
Ankur Dwivedi <adwivedi@marvell.com>,
Sunila Sahu <ssahu@marvell.com>, <dev@dpdk.org>
Subject: [dpdk-dev] [PATCH v2 0/4] add ECDSA support
Date: Wed, 15 Jan 2020 18:13:35 +0530 [thread overview]
Message-ID: <1579092219-15696-1-git-send-email-anoobj@marvell.com> (raw)
In-Reply-To: <1575546206-2478-1-git-send-email-anoobj@marvell.com>
This series adds support for ECDSA asymmetric operations. Library changes
and PMD changes for crypto_octeontx & crypto_octoentx2 is added. The final
patch adds the required test vectors and verification routines.
v2:
* Changed all NIST references to use SECP.
* Minor updates to documentation/comments as suggested by Arek
* Updated release notes
Ayuj Verma (2):
cryptodev: support ECDSA
app/test: add ECDSA sign/verify tests
Sunila Sahu (2):
crypto/octeontx: add ECDSA support
crypto/octeontx2: add ECDSA support
app/test/test_cryptodev_asym.c | 219 +++-
app/test/test_cryptodev_asym_util.h | 11 +
app/test/test_cryptodev_ecdsa_test_vectors.h | 505 +++++++++
doc/guides/cryptodevs/features/default.ini | 11 +-
doc/guides/cryptodevs/features/octeontx.ini | 8 +-
doc/guides/cryptodevs/features/octeontx2.ini | 8 +-
doc/guides/rel_notes/release_20_02.rst | 4 +
drivers/common/cpt/Makefile | 1 +
drivers/common/cpt/cpt_fpm_tables.c | 1138 ++++++++++++++++++++
drivers/common/cpt/cpt_mcode_defines.h | 38 +
drivers/common/cpt/cpt_pmd_ops_helper.h | 19 +
drivers/common/cpt/cpt_ucode_asym.h | 378 +++++++
drivers/common/cpt/meson.build | 3 +-
drivers/common/cpt/rte_common_cpt_version.map | 9 +
.../crypto/octeontx/otx_cryptodev_capabilities.c | 11 +
drivers/crypto/octeontx/otx_cryptodev_ops.c | 43 +-
.../crypto/octeontx2/otx2_cryptodev_capabilities.c | 11 +
drivers/crypto/octeontx2/otx2_cryptodev_ops.c | 39 +-
lib/librte_cryptodev/rte_crypto_asym.h | 84 ++
lib/librte_cryptodev/rte_cryptodev.c | 1 +
20 files changed, 2526 insertions(+), 15 deletions(-)
create mode 100644 app/test/test_cryptodev_ecdsa_test_vectors.h
create mode 100644 drivers/common/cpt/cpt_fpm_tables.c
--
2.7.4
next prev parent reply other threads:[~2020-01-15 12:44 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-05 11:43 [dpdk-dev] [PATCH " Anoob Joseph
2019-12-05 11:43 ` [dpdk-dev] [PATCH 1/4] lib/crypto: add support for ECDSA Anoob Joseph
2019-12-20 16:05 ` Kusztal, ArkadiuszX
2020-01-02 7:55 ` Anoob Joseph
2020-01-09 13:03 ` Kusztal, ArkadiuszX
2020-01-13 12:47 ` Akhil Goyal
2020-01-13 16:36 ` Anoob Joseph
2020-01-14 5:12 ` Shally Verma
2020-01-14 11:01 ` Kusztal, ArkadiuszX
2019-12-05 11:43 ` [dpdk-dev] [PATCH 2/4] crypto/octeontx: add ECDSA support Anoob Joseph
2019-12-05 11:43 ` [dpdk-dev] [PATCH 3/4] crypto/octeontx2: " Anoob Joseph
2019-12-05 11:43 ` [dpdk-dev] [PATCH 4/4] app/test: add ECDSA sign/verify tests Anoob Joseph
2020-01-15 12:43 ` Anoob Joseph [this message]
2020-01-15 12:43 ` [dpdk-dev] [PATCH v2 1/4] cryptodev: support ECDSA Anoob Joseph
2020-01-15 15:51 ` Akhil Goyal
2020-01-15 12:43 ` [dpdk-dev] [PATCH v2 2/4] crypto/octeontx: add ECDSA support Anoob Joseph
2020-01-15 12:43 ` [dpdk-dev] [PATCH v2 3/4] crypto/octeontx2: " Anoob Joseph
2020-01-15 12:43 ` [dpdk-dev] [PATCH v2 4/4] app/test: add ECDSA sign/verify tests Anoob Joseph
2020-01-15 15:50 ` [dpdk-dev] [PATCH v2 0/4] add ECDSA support Akhil Goyal
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1579092219-15696-1-git-send-email-anoobj@marvell.com \
--to=anoobj@marvell.com \
--cc=adwivedi@marvell.com \
--cc=akhil.goyal@nxp.com \
--cc=arkadiuszx.kusztal@intel.com \
--cc=declan.doherty@intel.com \
--cc=dev@dpdk.org \
--cc=fiona.trahe@intel.com \
--cc=jerinj@marvell.com \
--cc=pablo.de.lara.guarch@intel.com \
--cc=pathreya@marvell.com \
--cc=shallyv@marvell.com \
--cc=ssahu@marvell.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).