From patchwork Thu Jul 11 13:22:44 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ayuj Verma X-Patchwork-Id: 56341 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 C9EC631FC; Thu, 11 Jul 2019 15:22:57 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id AD6922F42 for ; Thu, 11 Jul 2019 15:22:56 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x6BDKi6V024395; Thu, 11 Jul 2019 06:22:55 -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-type; s=pfpt0818; bh=jRWuC70TR8Jz1AJ+UyvFLPwv/lYp9TYjl4C0Jst98to=; b=cSGgWDywO/avMl58OpmtwVkkMjxGhwTtNrLGAOYETmL842/YUVSYKFyhvdS8TwdD17Ed dhrmpwvLuNk9GCDyGUYLo+E6SjtHv1UoX30rcjtaOPj0sxtdscAwv1vir0sQcsJXpChu mqtkmms7nKAUqQloqkF7g+IfYc+jTsKjXcqHrn9vogYZmvO/mmZQPnSPf57BzknlHkAv BBH21/+XUXcVSzrQj5jtSsR54jAqvjnW2OfX3aGVnMVJIAWCiI1CqdF59rlw/W1syD4x jpxdkkGn79zhQ/p3AsB6UxnRr+FmFPms/imB/iEE8C6Ml1+JRhPHuYU7Rdp+0goCOCFJ vQ== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0a-0016f401.pphosted.com with ESMTP id 2tp4d20c6t-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 11 Jul 2019 06:22:55 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 11 Jul 2019 06:22:54 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 11 Jul 2019 06:22:54 -0700 Received: from localhost.marvell.com (unknown [10.28.10.76]) by maili.marvell.com (Postfix) with ESMTP id 1FD223F703F; Thu, 11 Jul 2019 06:22:51 -0700 (PDT) From: Ayuj Verma To: CC: , , , , , , , Ayuj Verma Date: Thu, 11 Jul 2019 18:52:44 +0530 Message-ID: <1562851366-23900-1-git-send-email-ayverma@marvell.com> X-Mailer: git-send-email 1.8.3.1 MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-07-11_02:, , signatures=0 Subject: [dpdk-dev] [PATCH v1 0/2] add tests for RSA key type CRT 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 patch series add new RSA CRT key based test cases, improve code organization and also rebase it to latest changes. It covers following changes: * Add crt key based rsa sign/verify, enc/decrypt test cases * Move common code of enqueue/dequeue into separate function * Configure device with ff_disable set Ayuj Verma (2): test/crypto: move rsa enqueue/dequeue into separate functions test/crypto: add tests for RSA key type CRT app/test/test_cryptodev_asym.c | 460 +++++++++++++++++------------ app/test/test_cryptodev_rsa_test_vectors.h | 93 ++++++ 2 files changed, 363 insertions(+), 190 deletions(-)