From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A6BB3C433DF for ; Fri, 9 Oct 2020 20:08:31 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 356712053B for ; Fri, 9 Oct 2020 20:08:30 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 356712053B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 58C501D519; Fri, 9 Oct 2020 22:08:29 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 7F4251D451 for ; Fri, 9 Oct 2020 22:08:27 +0200 (CEST) IronPort-SDR: H8ZxmHeP9/8L245NiyX47CmoPI8HWs85WMmwd4ugndaxVAmb2VxI3k+zbxxNy7kS3s4kcFlHVe GFX/VWrzt+ZA== X-IronPort-AV: E=McAfee;i="6000,8403,9769"; a="152452793" X-IronPort-AV: E=Sophos;i="5.77,355,1596524400"; d="scan'208";a="152452793" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Oct 2020 13:08:24 -0700 IronPort-SDR: zadnWW9Yuc03df/YkP+yE2MgHTdaz6Fmt7ivi+fsNCOWnMzZSuxpV+jaCDevjS8V6zTz9uGKlg waiIu/oyX7UQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,355,1596524400"; d="scan'208";a="312656635" Received: from silpixa00398673.ir.intel.com (HELO silpixa00398673.ger.corp.intel.com) ([10.237.223.136]) by orsmga003.jf.intel.com with ESMTP; 09 Oct 2020 13:08:23 -0700 From: Fan Zhang To: dev@dpdk.org Cc: akhil.goyal@nxp.com, Fan Zhang Date: Fri, 9 Oct 2020 21:08:20 +0100 Message-Id: <20201009200822.4652-1-roy.fan.zhang@intel.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200904160945.24590-1-roy.fan.zhang@intel.com> References: <20200904160945.24590-1-roy.fan.zhang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [dpdk-dev v3 0/2] fips_validation: add SGL and GMAC support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patchset adds SGL and GMAC support to fips_validation sample application. The added cmdline option allows user to split the input data into multiple mbuf segments to test SGL feature of the target cryptodev PMD; The NIST GCMVS compliant GMAC test method support is also added in this patchset. V3: - Rebased on top of latest master. V2: - Fixed compile issue. Fan Zhang (2): fips_validation: add SGL support fips_validation: update GCM test doc/guides/rel_notes/release_20_11.rst | 5 + doc/guides/sample_app_ug/fips_validation.rst | 6 + examples/fips_validation/fips_validation.h | 29 +- .../fips_validation/fips_validation_gcm.c | 118 ++++- examples/fips_validation/main.c | 447 +++++++++++++----- 5 files changed, 460 insertions(+), 145 deletions(-) -- 2.20.1