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=-3.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, 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 22184C352AA for ; Tue, 1 Oct 2019 10:14:16 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id BB58F2133F for ; Tue, 1 Oct 2019 10:14:15 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=marvell.com header.i=@marvell.com header.b="ZjW0gTUA" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org BB58F2133F Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=marvell.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 B69D94C8D; Tue, 1 Oct 2019 12:14:14 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 4E81923D for ; Tue, 1 Oct 2019 12:14:13 +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 x91A4k6T019197; Tue, 1 Oct 2019 03:14:11 -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=pfpt0818; bh=Kfg8K7/FzUwLKqQO5GLR0G7U+YilWa8eSknbb2NQ1Mo=; b=ZjW0gTUAEWiQWjVL9JoLIHuNC89qGp6zmwx8huSUPEX1bhOf5ea4VPQ9sciB8KpHrj8n pQbxEZOxA3u/ByfHJ+LjRqCtLNKD00pmdksGFwjFZHazI3E9SpKk/RzqgaABinPCCGR+ oCvUWSV8K1GW15Wtg8hBpFcvs7m96Yz2SArvcmfqNYxCLOhoMdlYv41/jvtnh+nhMc1U KACBHS04VVK2qdeiRzuzdUmIB9jTJS9yQCz8OI3Ldovg5aDQfG/MZgWxpCXYw+i9DmQh fwKNuMsRsixGmbW4wgaI1vmX5x9xVaXv9KjoQ5s5ABNenIpLWKugY8SnV2pLyq998lZO XQ== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0b-0016f401.pphosted.com with ESMTP id 2va71mhut3-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 01 Oct 2019 03:14:11 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Tue, 1 Oct 2019 03:14:08 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Tue, 1 Oct 2019 03:14:09 -0700 Received: from vvenus375.il.marvell.com (unknown [10.5.120.75]) by maili.marvell.com (Postfix) with ESMTP id 8B99D3F7040; Tue, 1 Oct 2019 03:14:07 -0700 (PDT) From: To: CC: , , , Date: Tue, 1 Oct 2019 13:32:43 +0300 Message-ID: <20191001103246.29830-1-michaelsh@marvell.com> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20190826094120.22590-1-michaelsh@marvell.com> References: <20190826094120.22590-1-michaelsh@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.95,1.0.8 definitions=2019-10-01_05:2019-10-01,2019-10-01 signatures=0 Subject: [dpdk-dev] [PATCH v3 0/3] support ECB for AES and TDES 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" From: Michael Shamis Michael Shamis (3): examples/fips_validation: add TDES ECB support examples/fips_validation: add AES ECB support examples/fips_validation: separate ECB and CBC examples/fips_validation/fips_validation.c | 1 + examples/fips_validation/fips_validation.h | 7 + .../fips_validation/fips_validation_aes.c | 1 + .../fips_validation/fips_validation_tdes.c | 7 + examples/fips_validation/main.c | 189 +++++++++++++++--- 5 files changed, 179 insertions(+), 26 deletions(-) -- 2.23.0