From patchwork Wed Jun 29 12:35:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gowrishankar Muthukrishnan X-Patchwork-Id: 113555 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 261D1A0545; Wed, 29 Jun 2022 14:35:16 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C03A5400D7; Wed, 29 Jun 2022 14:35:15 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 2DBAA40042 for ; Wed, 29 Jun 2022 14:35:14 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 25T3s23m030830; Wed, 29 Jun 2022 05:35:13 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=dk2qlyitFEiuyfBMYdA8RKemtGheCEKv31yHHUwF6Pg=; b=ZTUrsQzaHWWjQm/4gtaaL3Q6rnNYL0tdk5c5W1B2n2ZJ4A5/EibRFXCFFp4EItBDH2Ht amljRPpxEKW/92AMN636rHF8JdytUbvr17wzQRz66//Y8XbFohY3HdEr+UvuItU6PBE1 gqoJmvOlINzEM2TntEG/peiQ386JYpwsdxbKKKa76mA0RuB6+SxFTwLuFKccaV5w0UbA zVgkcdHCmE2uU8uGHUYoV6yfw4dH3G3I1G0tTZ4l3/tqpT30jrQla6Cy4jh/bXOfjP5D EgKzZtHI1gGCVa8BZSQkNBhsPGDAsoWVcH2cLkEMHtYnO2qnqWK9EyDP69LzNlWkbhBN FQ== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3h0f859v8x-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 29 Jun 2022 05:35:13 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Wed, 29 Jun 2022 05:35:11 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Wed, 29 Jun 2022 05:35:11 -0700 Received: from localhost.localdomain (unknown [10.28.34.38]) by maili.marvell.com (Postfix) with ESMTP id 4D5293F70A0; Wed, 29 Jun 2022 05:35:09 -0700 (PDT) From: Gowrishankar Muthukrishnan To: CC: Fan Zhang , Brian Dooley , Anoob Joseph , "Archana Muniganti" , Jerin Jacob , Gowrishankar Muthukrishnan Subject: [PATCH v4 0/3] example/fips_validation: add xts and sha json parsing Date: Wed, 29 Jun 2022 18:05:03 +0530 Message-ID: X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 X-Proofpoint-GUID: 7lGyodWJDYZqtCz6x1ZweIq5rpI0mJra X-Proofpoint-ORIG-GUID: 7lGyodWJDYZqtCz6x1ZweIq5rpI0mJra X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-06-29_17,2022-06-28_01,2022-06-22_01 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add support in fips_validation to parse AES_XTS and SHA json vectors. v4: - doc updates Gowrishankar Muthukrishnan (3): examples/fips_validation: add aes_cbc specific enum examples/fips_validation: add parsing for xts examples/fips_validation: add parsing for sha doc/guides/sample_app_ug/fips_validation.rst | 2 + examples/fips_validation/fips_validation.c | 6 +- examples/fips_validation/fips_validation.h | 26 ++- .../fips_validation/fips_validation_sha.c | 188 ++++++++++++++++++ .../fips_validation/fips_validation_xts.c | 141 +++++++++++++ examples/fips_validation/main.c | 44 +++- 6 files changed, 394 insertions(+), 13 deletions(-)