> -----Original Message----- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Pablo de Lara > Sent: Friday, March 11, 2016 12:43 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v3] null_crypto_pmd: PMD to support null crypto > operations > > From: Declan Doherty <declan.doherty at intel.com> > > This patch provides the implementation of a NULL crypto PMD, which > supports > NULL cipher and NULL authentication operations, which can be chained > together > as follows: > > - Authentication Only > - Cipher Only > - Authentication then Cipher > - Cipher then Authentication > > As this is a NULL operation device the crypto operations which are submitted > for > processing are not actually modified and are stored in a queue pairs > processed > packets ring ready for collection when rte_cryptodev_burst_dequeue() is > called. > > The patch also contains the related unit tests function to test the PMDs > supported operations. > > Signed-off-by: Declan Doherty <declan.doherty at intel.com> > Acked-by: Deepak Kumar JAIN<deepak.k.jain at intel.com> > --- > > This patch depends on "AES GCM, AES CMAC fixes and addition of GCM > tests for QAT" patchset > (http://dpdk.org/ml/archives/dev/2016-March/034974.html) > > Changes in v2: > - Rebased to include Cryptodev API changes > > Changes in v3: > > - Added missing doc reference in MAINTAINERS > - Removed attempt to remove a reference already delated > > > MAINTAINERS | 4 + > app/test/test_cryptodev.c | 402 > ++++++++++++++++++++++++++++++++- > config/common_base | 5 + > doc/guides/cryptodevs/index.rst | 3 +- > doc/guides/rel_notes/release_16_04.rst | 3 + > drivers/crypto/Makefile | 1 + > mk/rte.app.mk | 1 + > 7 files changed, 417 insertions(+), 2 deletions(-)
Self-NACK again, actual driver was not included...