DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Liu, Yong" <yong.liu@intel.com>
To: "Jain, Deepak K" <deepak.k.jain@intel.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Cc: "De Lara Guarch, Pablo" <pablo.de.lara.guarch@intel.com>,
	"Jain, Deepak K" <deepak.k.jain@intel.com>
Subject: Re: [dpdk-dev] [PATCH v2 0/2] add aes-sha384-hmac support to Intel QAT	driver
Date: Sun, 18 Sep 2016 05:17:24 +0000	[thread overview]
Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E602C63FA@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <1473709887-24062-1-git-send-email-deepak.k.jain@intel.com>

Tested-by: Yong Liu <yong.liu@intel.com>

- Tested Branch: dpdk-next-crypto/master
- Tested Commit: 3e329d659b62097d15ec86ff92acc8effaf28cd2
- OS: Fedora20 3.11.10-301.fc20.x86_64
- GCC: gcc version 4.8.3 20140911
- CPU: Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz
- NIC: Intel Corporation Device Fortville [8086:1583]
- QAT: Intel Corporation Coleto Creek PCIe Endpoint [8086:0435]
- Default x86_64-native-linuxapp-gcc configuration
- Prerequisites:
- Total 2 cases, 2 passed, 0 failed

- Prerequisites command / instruction:
  Enable CONFIG_RTE_LIBRTE_PMD_QAT in config/common_base and rebuild dpdk
  Bind QAT VF devices to igb_uio

- Case: 
  Description: SHA384_HMAC authentication unit test 
  Command / instruction:
    Start test application with normal eal parameter.
      ./$RTE_TARGET/app/test -c f -n 4 -- -i
    Run crypto QAT unit test suite and verify SHA384_HMAC cases passed

- Case: 
  Description: l2fwd_crypto with SHA384_HMAC authentication test
  Command / instruction:
    Start l2fwd_crypto with QAT technology enable.
    Authentication method is SHA384_HMAC, auth key is also inputted in.
    Authentication key length for SHA384_HMAC should be 128 bytes.
      ./examples/l2fwd-crypto/build/app/l2fwd-crypto -c0xf -n4 -- -p0x1 \
        --chain HASH_ONLY --cdev_type ANY --auth_algo SHA384_HMAC \
        --auth_op GENERATE --auth_key $auth_key

    Send 65 packets with random 64 bytes payload and capture forwarded packets.
    Check all forwarded packets contained of 48 bytes hashed value.
    Check hash values are same as calculated value.

> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Deepak Kumar Jain
> Sent: Tuesday, September 13, 2016 3:51 AM
> To: dev@dpdk.org
> Cc: De Lara Guarch, Pablo; Jain, Deepak K
> Subject: [dpdk-dev] [PATCH v2 0/2] add aes-sha384-hmac support to Intel
> QAT driver
> 
> This patchset adds support of aes-sha384-hmac in Intel(R) QuickAssist
> Technology driver.
> 
> This patchset depends on following patchset:
> "crypto/qat: add aes-sha224-hmac capability to Intel QAT driver"
> (http://dpdk.org/dev/patchwork/patch/15776/)
> 
> 
> Jain, Deepak K (2):
>   crypto/qat: add aes-sha384-hmac capability to Intel QAT driver
>   app/test: add test cases for aes-sha384-hmac for Intel QAT driver
> 
> Changes from V1:
> * Added new feature information in release_16_11.rst file.
> * Added information about sha384-hmac in capabilities.
> 
>  app/test/test_cryptodev_aes.c                    |  6 +++--
>  doc/guides/cryptodevs/qat.rst                    |  1 +
>  doc/guides/rel_notes/release_16_11.rst           |  1 +
>  drivers/crypto/qat/qat_adf/qat_algs_build_desc.c | 33
> ++++++++++++++++++++++++
>  drivers/crypto/qat/qat_crypto.c                  | 31
> +++++++++++++++++++---
>  5 files changed, 66 insertions(+), 6 deletions(-)
> 
> --
> 2.5.5

      parent reply	other threads:[~2016-09-18  5:17 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-18 13:25 [dpdk-dev] [PATCH " Deepak Kumar Jain
2016-08-18 13:25 ` [dpdk-dev] [PATCH 1/2] crypto/qat: add aes-sha384-hmac capability " Deepak Kumar Jain
2016-08-18 13:25 ` [dpdk-dev] [PATCH 2/2] app/test: add test cases for aes-sha384-hmac for " Deepak Kumar Jain
2016-09-07 18:01 ` [dpdk-dev] [PATCH 0/2] add aes-sha384-hmac support to " De Lara Guarch, Pablo
2016-09-07 19:33   ` Jain, Deepak K
2016-09-12 19:46 ` [dpdk-dev] [PATCH v2 " Deepak Kumar Jain
2016-09-12 19:46   ` [dpdk-dev] [PATCH v2 1/2] crypto/qat: add aes-sha224-hmac capability " Deepak Kumar Jain
2016-09-15 13:20     ` Trahe, Fiona
2016-09-12 19:46   ` [dpdk-dev] [PATCH v2 2/2] app/test: add test cases for aes-sha224-hmac for " Deepak Kumar Jain
2016-09-15 13:21     ` Trahe, Fiona
2016-09-12 19:51   ` [dpdk-dev] [PATCH v2 0/2] add aes-sha384-hmac support to " Deepak Kumar Jain
2016-09-12 19:51     ` [dpdk-dev] [PATCH v2 1/2] crypto/qat: add aes-sha384-hmac capability " Deepak Kumar Jain
2016-09-15 13:27       ` Trahe, Fiona
2016-09-12 19:51     ` [dpdk-dev] [PATCH v2 2/2] app/test: add test cases for aes-sha384-hmac for " Deepak Kumar Jain
2016-09-15 13:28       ` Trahe, Fiona
2016-09-16  1:13     ` [dpdk-dev] [PATCH v2 0/2] add aes-sha384-hmac support to " De Lara Guarch, Pablo
2016-09-18  5:17     ` Liu, Yong [this message]

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=86228AFD5BCD8E4EBFD2B90117B5E81E602C63FA@SHSMSX103.ccr.corp.intel.com \
    --to=yong.liu@intel.com \
    --cc=deepak.k.jain@intel.com \
    --cc=dev@dpdk.org \
    --cc=pablo.de.lara.guarch@intel.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).