From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B0ADDA0C46; Mon, 16 Aug 2021 08:00:31 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4E05E40395; Mon, 16 Aug 2021 08:00:31 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id C5F584003C for ; Mon, 16 Aug 2021 08:00:29 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.1.2/8.16.0.43) with SMTP id 17FMdstp000851; Sun, 15 Aug 2021 23:00:29 -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=pfpt0220; bh=yGVsyYS0QiFp6GhUPBbMSkEfvGySQTnm997H8++JotE=; b=bqyfBEsNNvoE3Q9b4ROzJ3vzGZDmOJDIqJvBiYq0kBOYevQmRMjpcFS8E4KnQ9guHLd6 BgUAg2xA52EZEoQGXTWND4vPaPPM5gXdvFu7pBYLv7ztUVnyolDN0Nelgvbc4Vn2d9At tbk0XerfHSszu47m4KSjFbcpGp/55N+D29UIsVkuOoxPIq1j8+4x2URctL+4DktoMxpj mX2QO3HD6lEaAq48k2mLiVURt0Lb116TzqK9AVFKOOdTwez6o1QxFhGzDw37jQIZR9gA LYPwQLACQIAwg+BYK+HULc5hdoC3eVBgC73DpmIxVfiwmdK/Y7pmnFJCLevrYqOocc4Q xg== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com with ESMTP id 3af0pthwga-7 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Sun, 15 Aug 2021 23:00:28 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Sun, 15 Aug 2021 23:00:19 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Sun, 15 Aug 2021 23:00:19 -0700 Received: from HY-LT1002.marvell.com (unknown [10.193.36.215]) by maili.marvell.com (Postfix) with ESMTP id 71A9E5B6962; Sun, 15 Aug 2021 23:00:13 -0700 (PDT) From: Anoob Joseph To: Akhil Goyal , Declan Doherty , Fan Zhang , "Konstantin Ananyev" CC: Anoob Joseph , Jerin Jacob , Archana Muniganti , Tejasree Kondoj , Hemant Agrawal , "Radu Nicolau" , Ciara Power , Date: Mon, 16 Aug 2021 11:29:47 +0530 Message-ID: <1629093590-115-1-git-send-email-anoobj@marvell.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: hYs_ZZIi8ufASVS1_szwWahwQGeyY0qz X-Proofpoint-ORIG-GUID: hYs_ZZIi8ufASVS1_szwWahwQGeyY0qz X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.182.1,Aquarius:18.0.790,Hydra:6.0.391,FMLib:17.0.607.475 definitions=2021-08-16_02,2021-08-13_02,2020-04-07_01 Subject: [dpdk-dev] [PATCH 0/3] Add user specified IV with lookaside IPsec 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 Sender: "dev" Add support for using user provided IV with lookaside protocol (IPsec). Using this option, application can provide IV to be used per operation. This option can be used for knownn vector tests (which is otherwise impossible due to random nature of IV) as well as if application wishes to use its own random generator source. Depends on 1. http://patches.dpdk.org/project/dpdk/list/?series=18253 Anoob Joseph (2): security: support user specified IV test/crypto: add outbound known vector tests Tejasree Kondoj (1): crypto/cnxk: add IV in SA in lookaside IPsec debug mode app/test/test_cryptodev.c | 44 +++++++++++++++++++++++ app/test/test_cryptodev_security_ipsec.c | 16 ++++++++- drivers/crypto/cnxk/cn10k_ipsec.c | 16 +++++++++ drivers/crypto/cnxk/cn10k_ipsec.h | 2 ++ drivers/crypto/cnxk/cn10k_ipsec_la_ops.h | 24 +++++++++++++ drivers/crypto/cnxk/cnxk_cryptodev_capabilities.c | 16 ++++++++- drivers/crypto/cnxk/meson.build | 6 ++++ lib/security/rte_security.h | 14 ++++++++ 8 files changed, 136 insertions(+), 2 deletions(-) -- 2.7.4