From patchwork Fri Sep 7 17:13:09 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kovacevic, Marko" X-Patchwork-Id: 44425 Return-Path: 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 A1C2B4F98; Fri, 7 Sep 2018 19:15:05 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 294914F91 for ; Fri, 7 Sep 2018 19:15:03 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Sep 2018 10:15:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,343,1531810800"; d="scan'208";a="89848902" Received: from silpixa00399502.ir.intel.com (HELO silpixa00399502.ger.corp.intel.com) ([10.237.223.218]) by orsmga002.jf.intel.com with ESMTP; 07 Sep 2018 10:15:01 -0700 From: Marko Kovacevic To: dev@dpdk.org Cc: akhil.goyal@nxp.com, roy.fan.zhang@intel.com, Marko Kovacevic Date: Fri, 7 Sep 2018 18:13:09 +0100 Message-Id: <20180907171311.20371-1-marko.kovacevic@intel.com> X-Mailer: git-send-email 2.9.5 Subject: [dpdk-dev] [PATCH v1 0/2] FIPS validation capability 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" Adding capability into DPDK to allow certification for FIPS validation, I have just added one test for one algo will be adding other algos into other versions of the patch and i will be refactoring the code and cleaning the parser once i start adding the different algos. Marko Kovacevic (2): test/test: cryptodev application for FIPS certification test/test: cryptodev application parser for FIPS certification test/test/Makefile | 4 + test/test/test_cryptodev_fips.c | 771 +++++++++++++++++++++++++++ test/test/test_cryptodev_fips_parse.h | 156 ++++++ test/test/test_cryptodev_fips_parse_aes.c | 399 ++++++++++++++ test/test/test_cryptodev_fips_parse_common.c | 330 ++++++++++++ 5 files changed, 1660 insertions(+) create mode 100644 test/test/test_cryptodev_fips.c create mode 100644 test/test/test_cryptodev_fips_parse.h create mode 100644 test/test/test_cryptodev_fips_parse_aes.c create mode 100644 test/test/test_cryptodev_fips_parse_common.c