Message ID | 20190919121232.4864-1-michaelsh@marvell.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CD2011EF55; Thu, 19 Sep 2019 13:54:06 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 273501EF2F; Thu, 19 Sep 2019 13:54:05 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x8JBoopR028493; Thu, 19 Sep 2019 04:54:04 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=DWQrsXEy7Y7iFYVAr6+gLv538ZmOD5uU0z2K1XHyNrk=; b=yMFIgHR8EEB8fhJtArlBcYvT8nECbVZV5gvoisa3mv5kyC/vDX26fe3ZSI6zn/Fvwhox 6CYfw8+st7yzpifBXZe/2lUKAirlIj7UNMOabWX8V30wFCfdqota13CrbAJQCsjlWwua IKtyc8NQwPg6D3uwebYblS8k0zqgLDtHjR4/a0Sw4DCozu0kS+JFRQvuY2pFftUGgLMi QMLgo/0N3AA7Yb14bHal8jh8+aRo5Bhic+p1bhCSXuyqmO6gb7QSI0KRsWTPxg/cJNFM NyEgs0QP2GSpIx8KVRXjjPgQyaHZgSBgUb4AO8ceYCQqVCGQn+nmGoQ8u3hCAwohq4sw TA== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 2v3vcfjn41-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 19 Sep 2019 04:54:04 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 19 Sep 2019 04:54:02 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 19 Sep 2019 04:54:02 -0700 Received: from vvenus375.il.marvell.com (unknown [10.5.120.75]) by maili.marvell.com (Postfix) with ESMTP id 6D2203F703F; Thu, 19 Sep 2019 04:54:00 -0700 (PDT) From: <michaelsh@marvell.com> To: <akhil.goyal@nxp.com> CC: <stable@dpdk.org>, <dev@dpdk.org>, <marko.kovacevic@intel.com>, <lironh@marvell.com>, <michaelsh@marvell.com> Date: Thu, 19 Sep 2019 15:12:24 +0300 Message-ID: <20190919121232.4864-1-michaelsh@marvell.com> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.70,1.0.8 definitions=2019-09-19_04:2019-09-19,2019-09-19 signatures=0 Subject: [dpdk-dev] [PATCH 0/8] Fips validation fixes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Series |
Fips validation fixes
|
|
Message
Michael Shamis
Sept. 19, 2019, 12:12 p.m. UTC
From: Michael Shamis <michaelsh@marvell.com>
Include fixes related to SHA, TDES and GCM.
Michael Shamis (8):
examples/fips_validation: separation between HMAC-SHA and SHA
examples/fips_validation: fix structs used for AES-GCM
examples/fips_validation: initialize IV for AES-GCM
examples/fips_validation: move digest after cipher text
examples/fips_validation: fix AES-GCM decryption vector
examples/fips_validation: fix overwrite of KEY line in TDES
examples/fips_validation: improve algo parsing logic
examples/fips_validation: fix plain text overwrite
examples/fips_validation/fips_validation.c | 85 +++++++++++++++++--
.../fips_validation/fips_validation_gcm.c | 39 +++++++--
examples/fips_validation/main.c | 15 +++-
3 files changed, 119 insertions(+), 20 deletions(-)
Comments
Hi Michael, I see that there are compilation issues with meson build Please check http://mails.dpdk.org/archives/test-report/2019-September/098161.html Also run devtools/check-git-log.sh -<number of patches>. You should have a fixes line in each of the fix commits as stated earlier also. Please have a look at http://doc.dpdk.org/guides/contributing/patches.html for any clarification. Thanks, Akhil > -----Original Message----- > From: michaelsh@marvell.com <michaelsh@marvell.com> > Sent: Thursday, September 19, 2019 5:42 PM > To: Akhil Goyal <akhil.goyal@nxp.com> > Cc: stable@dpdk.org; dev@dpdk.org; marko.kovacevic@intel.com; > lironh@marvell.com; michaelsh@marvell.com > Subject: [PATCH 0/8] Fips validation fixes > > From: Michael Shamis <michaelsh@marvell.com> > > Include fixes related to SHA, TDES and GCM. > > Michael Shamis (8): > examples/fips_validation: separation between HMAC-SHA and SHA > examples/fips_validation: fix structs used for AES-GCM > examples/fips_validation: initialize IV for AES-GCM > examples/fips_validation: move digest after cipher text > examples/fips_validation: fix AES-GCM decryption vector > examples/fips_validation: fix overwrite of KEY line in TDES > examples/fips_validation: improve algo parsing logic > examples/fips_validation: fix plain text overwrite > > examples/fips_validation/fips_validation.c | 85 +++++++++++++++++-- > .../fips_validation/fips_validation_gcm.c | 39 +++++++-- > examples/fips_validation/main.c | 15 +++- > 3 files changed, 119 insertions(+), 20 deletions(-) > > -- > 2.23.0