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 9B489A00C5 for ; Wed, 2 Feb 2022 16:04:57 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9797C410D5; Wed, 2 Feb 2022 16:04:57 +0100 (CET) Received: from mail-io1-f47.google.com (mail-io1-f47.google.com [209.85.166.47]) by mails.dpdk.org (Postfix) with ESMTP id 5D52240688 for ; Wed, 2 Feb 2022 16:04:55 +0100 (CET) Received: by mail-io1-f47.google.com with SMTP id z199so25759854iof.10 for ; Wed, 02 Feb 2022 07:04:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=wAhLtSo72gtLSmXkOkECqhUf4chSUeC+xpHqLKI8lns=; b=XAziE1nlIO+z7AYBFhVzWAcKj8iiGA6AA2HwZ6KLN8ZxJ+B6oQWkmgAYeJyUXTBSDr K9BBeMgHUUL8kfSZFlGkXz1YLW65LEh8A8skYepPLn04DkHwGoGLyb+LcooyM57+P4TA y+e6Fw6HKL64VfmOquHHSs8LOBRIO54Q4+5gk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=wAhLtSo72gtLSmXkOkECqhUf4chSUeC+xpHqLKI8lns=; b=W0hixnfctPSq4Ta0hvOw9/wzV4uyK0tIKUAJzNPIEpdryOj9XStDwtmj3u2K4C0Q2P tAyV1rnqtbwqGveMqy0V0Ck4MU3DYNvV9uVZJ1KmxCEUKPmVIy8WP6H8apBIUtyLcYu+ 68hA8EreiPi3vv7wq7i6673ZD/lJ0787ghKqTEMNSEePGBW1pKd7sZqBH0mKsK/pYIYG D1B79vEMYX44819rlCKJAx+FnA5ntHb//RNoe6TGE7GY0v09b28SBIyZj+WKEbDgRxMo uqFsEeASQo9srnRKx8wUlHSGEQff3HsQ8KNzHSDyOhJImIGjj/T1s4RZloWmZFkt+ztc Zieg== X-Gm-Message-State: AOAM533IZ/SDhUdRoI2OuGfVtj9GmbRyKUe2dImEPOM5mwpqYxasW+Lq f+JXjG/XJfZdBEqGQFZVnzWD4Q== X-Google-Smtp-Source: ABdhPJy+/F6p2lhdKpU5T0i10iJboUL98Djary2Te/3pf28iUBpR3+GHi8PTbk2FEH1n4hEfCB2nHQ== X-Received: by 2002:a5e:d610:: with SMTP id w16mr15900265iom.87.1643814294801; Wed, 02 Feb 2022 07:04:54 -0800 (PST) Received: from blo.unh.edu ([2606:4100:3880:1270:9db9:ea15:56a9:4976]) by smtp.gmail.com with ESMTPSA id a6sm12081603ilk.6.2022.02.02.07.04.53 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 02 Feb 2022 07:04:54 -0800 (PST) From: Brandon Lo To: thomas@monjalon.net Cc: ci@dpdk.org, Brandon Lo Subject: [PATCH v3 2/4] tools: add default config file for acvp_tool Date: Wed, 2 Feb 2022 10:04:43 -0500 Message-Id: <20220202150445.28995-3-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220202150445.28995-1-blo@iol.unh.edu> References: <20220126181649.770364-1-blo@iol.unh.edu> <20220202150445.28995-1-blo@iol.unh.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org This provides the user with a generic configuration to get started. It will use the demo server and a basic AES-GCM test. Signed-off-by: Brandon Lo --- tools/acvp/acvp_config.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tools/acvp/acvp_config.json diff --git a/tools/acvp/acvp_config.json b/tools/acvp/acvp_config.json new file mode 100644 index 0000000..9339885 --- /dev/null +++ b/tools/acvp/acvp_config.json @@ -0,0 +1,23 @@ +{ + "url": "https://demo.acvts.nist.gov", + "algorithms": [ + { + "algorithm": "ACVP-AES-GCM", + "revision": "1.0", + "direction": ["encrypt"], + "keyLen": [128, 192, 256], + "tagLen": [128], + "aadLen": [0], + "ivGenMode": "8.2.2", + "ivGen": "internal", + "ivLen": [96], + "payloadLen": [ + { + "max": 65536, + "min": 0, + "increment": 256 + } + ] + } + ] +} \ No newline at end of file -- 2.25.1