All of lore.kernel.org
 help / color / mirror / Atom feed
From: Akhil Goyal <akhil.goyal@nxp.com>
To: Fan Zhang <roy.fan.zhang@intel.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: "konstantin.ananyev@intel.com" <konstantin.ananyev@intel.com>
Subject: Re: [PATCH v5 0/5] ipsec: support AES-CTR and 3DES-CBC
Date: Fri, 22 Mar 2019 14:59:34 +0000	[thread overview]
Message-ID: <cd0bc457-21d4-9c71-da03-e63f6e7a8bd0@nxp.com> (raw)
In-Reply-To: <20190320153838.60419-1-roy.fan.zhang@intel.com>



On 3/20/2019 9:08 PM, Fan Zhang wrote:
> This patchset adds the AES-CTR and 3DES-CBC cipher algorithms
> support to ipsec library. The test scripts for ipsec-secgw
> sample application are added.
>
> v5:
> - updated ipsec-secgw run_test.sh script
> - updated release note
>
> v4:
> - changed patch titles.
> - changed ALGO_TYPE naming for 3DES-CBC
>
> v3:
> - fixed a bug in 3DES.
>
> v2:
> - removed unsupported tests.
>
> Fan Zhang (5):
>    ipsec: support AES-CTR
>    ipsec-secgw: add test scripts for aes ctr
>    ipsec: support 3DES-CBC
>    ipsec-secgw: add 3des test files
>    doc: update release note
>
>   doc/guides/rel_notes/release_19_05.rst             |   6 +
>   examples/ipsec-secgw/test/common_defs.sh           |   4 +-
>   examples/ipsec-secgw/test/run_test.sh              |  18 ++-
>   .../test/trs_3descbc_sha1_common_defs.sh           |  73 +++++++++++
>   examples/ipsec-secgw/test/trs_3descbc_sha1_defs.sh |  67 ++++++++++
>   .../test/trs_3descbc_sha1_esn_atom_defs.sh         |   5 +
>   .../ipsec-secgw/test/trs_3descbc_sha1_esn_defs.sh  |  66 ++++++++++
>   .../ipsec-secgw/test/trs_3descbc_sha1_old_defs.sh  |   5 +
>   .../test/trs_aesctr_sha1_common_defs.sh            |  69 +++++++++++
>   examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh  |  67 ++++++++++
>   .../test/trs_aesctr_sha1_esn_atom_defs.sh          |   5 +
>   .../ipsec-secgw/test/trs_aesctr_sha1_esn_defs.sh   |  66 ++++++++++
>   .../ipsec-secgw/test/trs_aesctr_sha1_old_defs.sh   |   5 +
>   .../test/tun_3descbc_sha1_common_defs.sh           |  72 +++++++++++
>   examples/ipsec-secgw/test/tun_3descbc_sha1_defs.sh |  70 +++++++++++
>   .../test/tun_3descbc_sha1_esn_atom_defs.sh         |   5 +
>   .../ipsec-secgw/test/tun_3descbc_sha1_esn_defs.sh  |  70 +++++++++++
>   .../ipsec-secgw/test/tun_3descbc_sha1_old_defs.sh  |   5 +
>   .../test/tun_aesctr_sha1_common_defs.sh            |  68 ++++++++++
>   examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh  |  70 +++++++++++
>   .../test/tun_aesctr_sha1_esn_atom_defs.sh          |   5 +
>   .../ipsec-secgw/test/tun_aesctr_sha1_esn_defs.sh   |  70 +++++++++++
>   .../ipsec-secgw/test/tun_aesctr_sha1_old_defs.sh   |   5 +
>   lib/librte_ipsec/crypto.h                          |  17 +++
>   lib/librte_ipsec/sa.c                              | 137 +++++++++++++++++----
>   lib/librte_ipsec/sa.h                              |  24 ++++
>   26 files changed, 1050 insertions(+), 24 deletions(-)
>   create mode 100644 examples/ipsec-secgw/test/trs_3descbc_sha1_common_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/trs_3descbc_sha1_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/trs_3descbc_sha1_esn_atom_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/trs_3descbc_sha1_esn_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/trs_3descbc_sha1_old_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_common_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_esn_atom_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_esn_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_old_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_3descbc_sha1_common_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_3descbc_sha1_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_3descbc_sha1_esn_atom_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_3descbc_sha1_esn_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_3descbc_sha1_old_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_common_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_esn_atom_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_esn_defs.sh
>   create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_old_defs.sh
>
series applied to dpdk-next-crypto

Thanks.

      parent reply	other threads:[~2019-03-22 14:59 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-18 16:32 [PATCH 0/4] ipsec: add AES-CTR and 3DES-CBC support Fan Zhang
2019-02-18 16:32 ` [PATCH 1/4] ipsec: add AES-CTR algorithm support Fan Zhang
2019-02-18 16:32 ` [PATCH 2/4] ipsec-secgw: add test scripts for aes ctr Fan Zhang
2019-02-18 16:32 ` [PATCH 3/4] ipsec: add 3DES-CBC algorithm support Fan Zhang
2019-02-18 16:32 ` [PATCH 4/4] ipsec-secgw: add 3des test files Fan Zhang
2019-02-19 15:32 ` [PATCH v2 0/4] ipsec: add AES-CTR and 3DES-CBC support Fan Zhang
2019-02-19 15:32   ` [PATCH v2 1/4] ipsec: add AES-CTR algorithm support Fan Zhang
2019-02-22 12:43     ` Ananyev, Konstantin
2019-03-19 14:32     ` Akhil Goyal
2019-02-19 15:32   ` [PATCH v2 2/4] ipsec-secgw: add test scripts for aes ctr Fan Zhang
2019-02-22 12:39     ` Ananyev, Konstantin
2019-02-19 15:32   ` [PATCH v2 3/4] ipsec: add 3DES-CBC algorithm support Fan Zhang
2019-02-22 12:38     ` Ananyev, Konstantin
2019-03-19 14:46     ` Akhil Goyal
2019-02-19 15:32   ` [PATCH v2 4/4] ipsec-secgw: add 3des test files Fan Zhang
2019-02-22 12:40     ` Ananyev, Konstantin
2019-02-25 12:07   ` [PATCH v3 0/4] ipsec: add AES-CTR and 3DES-CBC support Fan Zhang
2019-02-25 12:07     ` [PATCH v3 1/4] ipsec: add AES-CTR algorithm support Fan Zhang
2019-02-25 12:07     ` [PATCH v3 2/4] ipsec-secgw: add test scripts for aes ctr Fan Zhang
2019-02-25 12:07     ` [PATCH v3 3/4] ipsec: add 3DES-CBC algorithm support Fan Zhang
2019-02-25 12:07     ` [PATCH v3 4/4] ipsec-secgw: add 3des test files Fan Zhang
2019-03-04 16:38     ` [PATCH v3 0/4] ipsec: add AES-CTR and 3DES-CBC support Ananyev, Konstantin
2019-03-20 13:51     ` [PATCH v4 0/4] ipsec: support AES-CTR and 3DES-CBC Fan Zhang
2019-03-20 13:51       ` [PATCH v4 1/4] ipsec: support AES-CTR Fan Zhang
2019-03-20 13:51       ` [PATCH v4 2/4] ipsec-secgw: add test scripts for aes ctr Fan Zhang
2019-03-20 13:51       ` [PATCH v4 3/4] ipsec: support 3DES-CBC Fan Zhang
2019-03-20 13:51       ` [PATCH v4 4/4] ipsec-secgw: add 3des test files Fan Zhang
2019-03-20 15:38       ` [PATCH v5 0/5] ipsec: support AES-CTR and 3DES-CBC Fan Zhang
2019-03-20 15:38         ` [PATCH v5 1/5] ipsec: support AES-CTR Fan Zhang
2019-03-22 11:53           ` Akhil Goyal
2019-03-22 12:46             ` Ananyev, Konstantin
2019-03-22 13:01               ` Akhil Goyal
2019-03-20 15:38         ` [PATCH v5 2/5] ipsec-secgw: add test scripts for aes ctr Fan Zhang
2019-03-20 15:38         ` [PATCH v5 3/5] ipsec: support 3DES-CBC Fan Zhang
2019-03-20 15:38         ` [PATCH v5 4/5] ipsec-secgw: add 3des test files Fan Zhang
2019-03-20 15:38         ` [PATCH v5 5/5] doc: update release note Fan Zhang
2019-03-22 14:59         ` Akhil Goyal [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=cd0bc457-21d4-9c71-da03-e63f6e7a8bd0@nxp.com \
    --to=akhil.goyal@nxp.com \
    --cc=dev@dpdk.org \
    --cc=konstantin.ananyev@intel.com \
    --cc=roy.fan.zhang@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.