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 D2AFCA00C4; Sat, 29 Jan 2022 18:03:18 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 900AC40C35; Sat, 29 Jan 2022 18:03:18 +0100 (CET) Received: from mail-qt1-f182.google.com (mail-qt1-f182.google.com [209.85.160.182]) by mails.dpdk.org (Postfix) with ESMTP id 8CA3240041 for ; Sat, 29 Jan 2022 18:03:16 +0100 (CET) Received: by mail-qt1-f182.google.com with SMTP id i4so7918944qtr.0 for ; Sat, 29 Jan 2022 09:03:16 -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=0vnupWqxJ7gfAQBc8lJnU5Myxcf3KrRkjDjzFdFPFlI=; b=Vs4SmVTUF2K6qXGJAxSNCKpypNXxDyow6+HT+Si8x46COtntyN7j0NMVJKmkN5sgrN G08q/lp2Dh1+rryEz2BLQrN6BwQqafNx+xSkqlxP6vuASFIWBhTrI0yuIOrc1wN5bJnC SB0h3wJX0esKUGVkUAGUPiaeAhXqjxvsM1nL4= 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=0vnupWqxJ7gfAQBc8lJnU5Myxcf3KrRkjDjzFdFPFlI=; b=0r4rvYRSbN9XNw36hDXnTPJ7WX2+xwm8Rs4cpaPlQVXj76gACKrZwrjPg0jSI9IWLg l6EMqDS3j6Oj/vZGli5TR19ZWBkk4eV6z4x6m3irJ0WH4taPUGtS4qj2SGGpU3Wfxll8 tIgwskuA2GTc1pIyQIpZWwlBlGwmf8VhEjQpHf4VharHksmQK9/2NP3ruoeX492+mO0m Eek7C/LINf9UnoUJlk+waBG9yq8167oXiuuVvWu8H5lWsMFtoCUXzofdT2IKkMbV3rVy KtOfSNAiZhIYJYv7CC0seDXG6uhdGj0t+2SEvYYrElUjVKjsx1INfc86WdoADIfV4G6l hMOA== X-Gm-Message-State: AOAM530AEyZ9EwGPsU6JPjwN8PYU2uvkXltSTrgKntnUNXZBe0eNoL3h sx+9by2xgrG8Sz2tKqJ2ywSvZQ== X-Google-Smtp-Source: ABdhPJz9eUPKfOqR0P5SvtHf+YQ1qBQ8C1MK3wc+j3ohbSi5X/VkvKheKNiaI9rWCbxkUGbqjaFiHA== X-Received: by 2002:ac8:5a8f:: with SMTP id c15mr9607010qtc.271.1643475795894; Sat, 29 Jan 2022 09:03:15 -0800 (PST) Received: from blo.hsd1.nh.comcast.net ([2601:187:807e:37c0:8f3:b5b9:6ccc:8a5c]) by smtp.gmail.com with ESMTPSA id f9sm5411879qkp.94.2022.01.29.09.03.15 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 29 Jan 2022 09:03:15 -0800 (PST) From: Brandon Lo To: roy.fan.zhang@intel.com, ciara.power@intel.com Cc: dev@dpdk.org, Brandon Lo Subject: [PATCH v2 0/5] Add JSON vector set support to fips validation Date: Sat, 29 Jan 2022 12:03:08 -0500 Message-Id: <20220129170313.489986-1-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220127145142.86742-1-blo@iol.unh.edu> References: <20220127145142.86742-1-blo@iol.unh.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 Adds a very basic introduction to JSON vector sets in the fips validation example application. This patch set will only introduce the AES-GCM test using a JSON request file because the other algorithms need more information than what is given in the new JSON format. Brandon Lo (5): examples/fips_validation: add jansson dependency examples/fips_validation: add json info to header examples/fips_validation: add json parsing examples/fips_validation: allow json file as input examples/fips_validation: add json to gcm test examples/fips_validation/fips_validation.c | 90 ++++++++- examples/fips_validation/fips_validation.h | 48 ++++- .../fips_validation/fips_validation_gcm.c | 149 ++++++++++++++ examples/fips_validation/main.c | 190 +++++++++++++++++- examples/fips_validation/meson.build | 4 + 5 files changed, 471 insertions(+), 10 deletions(-) -- 2.25.1