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 86F5942AE6 for ; Fri, 12 May 2023 14:59:56 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 82FB042F9C; Fri, 12 May 2023 14:59:56 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id E3C6D40041; Fri, 12 May 2023 14:59:52 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 34C90h6P021671; Fri, 12 May 2023 05:59:52 -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=XrSkc6r7zsGHRO3IXylGIrkQXYx/dBDTiyFXlE9LcVE=; b=g99umdanmQbvGfjyUYDdeogtgDa0O9aNkHoC/HMAggwwWRjBBu0AZ5IEZCWaS5IJXBUe CFP8crEHKHB01vI/lnSyOC9SNwLLr1OSlw4vxImwe+Rc6TblgzKS4OwFh3sH+rYLvqle bxQblqHbteRxUdGNizoy1M6ssXZtG9mVI/8+bKsfuS0Fr1zUkqYe+lJbAvq7QbZGEi4A 0TzXU9k3Qv/EL7lrrMc2p+Dym/LbgmrycoTIDFTx07PgiE7Vro0pjn1vVffgefdLHdSV EBd8RiCbrkDMUmrDcfqK1yUYse2u3nuXfafWQIwsZZBhFXam6NIHWAKEl18e+JiFDbQ6 ow== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3qh9tk2msf-4 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 12 May 2023 05:59:51 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Fri, 12 May 2023 05:59:41 -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.48 via Frontend Transport; Fri, 12 May 2023 05:59:41 -0700 Received: from hyd1554.marvell.com (unknown [10.29.57.11]) by maili.marvell.com (Postfix) with ESMTP id BB6EE3F707A; Fri, 12 May 2023 05:59:34 -0700 (PDT) From: Tejasree Kondoj To: Akhil Goyal , Fan Zhang CC: Anoob Joseph , Ciara Power , Jerin Jacob , Aakash Sasidharan , Gowrishankar Muthukrishnan , Vidya Sagar Velumuri , , Subject: [PATCH] test/crypto: fix IPsec AES CCM test vector Date: Fri, 12 May 2023 18:29:33 +0530 Message-ID: <20230512125933.1131522-1-ktejasree@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: 2t1vy-Ak9VthCdn6dVWG1bdXVHE1CWF_ X-Proofpoint-ORIG-GUID: 2t1vy-Ak9VthCdn6dVWG1bdXVHE1CWF_ X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.254,Aquarius:18.0.942,Hydra:6.0.573,FMLib:17.11.170.22 definitions=2023-05-12_08,2023-05-05_01,2023-02-09_01 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Fixing IPsec AES-CCM test vector IV length. Fixes: d314299950de ("test/crypto: add AES-CCM vectors") Cc: stable@dpdk.org Signed-off-by: Tejasree Kondoj --- app/test/test_cryptodev_security_ipsec_test_vectors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_cryptodev_security_ipsec_test_vectors.h b/app/test/test_cryptodev_security_ipsec_test_vectors.h index 2686bbeb62..462cef6785 100644 --- a/app/test/test_cryptodev_security_ipsec_test_vectors.h +++ b/app/test/test_cryptodev_security_ipsec_test_vectors.h @@ -417,7 +417,7 @@ struct ipsec_test_data pkt_aes_256_ccm = { .op = RTE_CRYPTO_AEAD_OP_ENCRYPT, .algo = RTE_CRYPTO_AEAD_AES_CCM, .key.length = 32, - .iv.length = 12, + .iv.length = 11, .iv.offset = IV_OFFSET, .digest_length = 16, .aad_length = 12, -- 2.25.1