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 8DBE7A00C4 for ; Mon, 18 Apr 2022 15:36:19 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 67C664014F; Mon, 18 Apr 2022 15:36:19 +0200 (CEST) Received: from mail-qk1-f172.google.com (mail-qk1-f172.google.com [209.85.222.172]) by mails.dpdk.org (Postfix) with ESMTP id C543440141 for ; Mon, 18 Apr 2022 15:36:18 +0200 (CEST) Received: by mail-qk1-f172.google.com with SMTP id s70so4387119qke.8 for ; Mon, 18 Apr 2022 06:36:18 -0700 (PDT) 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=SUtr1Zmd4XYTwU2lS9ssu61fv+2d5iwc+LdNC2GFbMY=; b=Ta0M1WIlaOuRt+2jqkhPBOBtsn+qTNcoQqQzEAJ1tmXK+qUB+fNsTNwNFXNhbqHieh zRkGio5/1NjeYSsHx6bNtFK4lBd7zdWjRKPxu5rWl21bJIZ3icbZ+cMwtsrPiFTaFszX aSe3uhGd9gnVkJXwI0etIBMdQI5O+wPdHXuDI= 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=SUtr1Zmd4XYTwU2lS9ssu61fv+2d5iwc+LdNC2GFbMY=; b=7zE55ffggeQLridJidaPi+ziNkQWXMVfg8gP90LVcbVVMNmaWLmxCDqGIj+NBp1NI/ 5MfnZQ6wC+l9BdljtQIEyI/5eU0tmJJJoUrj6DWrC3hjsWXM454hV8tFc7F5G6PA4inO /ml04JPan4y7X9h8nN3o3lvKdQpuqtCzQSTGikY5VZ8JNZ58JF0O8DUHxU1dFKQBgMgc HZ8RMEjS/GSQsOcv+4Ny30e3vJpwK9Mw0LQS2Qz3SqX5pFfOk4K7yhAqzzm21h1AqcaW j0/OlGdPXf6/G98bQU0rk+bzBbx8fsDBGbhK47KwOuOl9Wt1MWUBFHHJEQjeEjuY6oWC aIaA== X-Gm-Message-State: AOAM531n+IoFrQdDMs8c6hfUL8DUH52E4hZQMsCfUDQPlUL4dqiLzYtV SBEeFOlP8So9or3zTuxYb0hVpuNYDcm+7OAvSk0= X-Google-Smtp-Source: ABdhPJxSrh3PMpxzSuUACmczDs8Ps2nQTxCMTopt5ZMwDzHM+a1njQ6FhgZZaOi/cRRo7qSja2FP+Q== X-Received: by 2002:a37:93c2:0:b0:69c:1e3f:6c97 with SMTP id v185-20020a3793c2000000b0069c1e3f6c97mr6643776qkd.578.1650288978122; Mon, 18 Apr 2022 06:36:18 -0700 (PDT) Received: from blo.iol.unh.edu ([2601:187:807e:37c0:ecc3:edc7:5dbb:9578]) by smtp.gmail.com with ESMTPSA id v14-20020a05622a144e00b002f1f32f86a6sm4480605qtx.5.2022.04.18.06.36.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 18 Apr 2022 06:36:17 -0700 (PDT) From: Brandon Lo To: alialnu@nvidia.com Cc: ci@dpdk.org, Brandon Lo Subject: [PATCH v4 0/4] Add ACVP tool Date: Mon, 18 Apr 2022 09:36:06 -0400 Message-Id: <20220418133610.10835-1-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220202150445.28995-1-blo@iol.unh.edu> References: <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 v4: * Make acvp_tool.py executable v3: * Remove extra requirements in root requirements file v2: * Add SPDX and copyright line This adds a tool for easy interaction with the ACVP API. It will handle downloading test vectors, uploading the result, and fetching the final verdict of those uploaded results. Brandon Lo (4): tools: add acvp_tool tools: add default config file for acvp_tool tools: add requirements file for acvp_tool doc: add readme file for acvp_tool tools/acvp/README | 71 ++++++++ tools/acvp/__init__.py | 0 tools/acvp/acvp_config.json | 23 +++ tools/acvp/acvp_tool.py | 319 ++++++++++++++++++++++++++++++++++++ tools/acvp/requirements.txt | 7 + 5 files changed, 420 insertions(+) create mode 100644 tools/acvp/README create mode 100644 tools/acvp/__init__.py create mode 100644 tools/acvp/acvp_config.json create mode 100755 tools/acvp/acvp_tool.py create mode 100644 tools/acvp/requirements.txt -- 2.25.1