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 EB8CEA04A6; Thu, 27 Jan 2022 15:51:48 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4443242776; Thu, 27 Jan 2022 15:51:48 +0100 (CET) Received: from mail-qt1-f171.google.com (mail-qt1-f171.google.com [209.85.160.171]) by mails.dpdk.org (Postfix) with ESMTP id 5C5714067C for ; Thu, 27 Jan 2022 15:51:46 +0100 (CET) Received: by mail-qt1-f171.google.com with SMTP id r14so2651509qtt.5 for ; Thu, 27 Jan 2022 06:51:46 -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:mime-version :content-transfer-encoding; bh=wbOaTx3lqvPcdqZ+iY9gmoQsFpdgEkqZwzVDxjM+x04=; b=KmKF+sxOcU4QRNt3wAypysDbz/iKAn/JN2MKs8vEiAFB058q2K7Lxc0gyByxosXdqW YHk8Ldvge9lcA2Suj5mw0E0z4Ji5qf05NUX7tR4kQssNOy0kLqRL3ro7SAWqlnGL7OFi 2LAuJWCgtW90fDpqiBO4jtE4sFQzV/xFwEGUw= 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:mime-version :content-transfer-encoding; bh=wbOaTx3lqvPcdqZ+iY9gmoQsFpdgEkqZwzVDxjM+x04=; b=xw8LA4dXtaWdurmTUQFyRjh/VSjR0qszMWEcrWcJguF4W4LTL7L6NAuKfbm4xn8HvW 5zQJvhFDuakRUTOkGgr31d3hI0YMnWP7q0KfhkffCy8dcSN6BqNxtw/PCx0ATJAOw9GG pmwfzwUIYy65DPiDEVT8zeV78tmq20P5CKIXapGTtrN55jY4dlxpfzC7BReJbvBfP+Mx I9GkNMyy395LRyqPiEWw0ceaahQKARyP+29npmhziMXJB0ashfNg78hv1FDRH9l8mpg9 X8/jAJ/qHhhbwvNREApmQW9OdvoyAaMtnHdfIqQiaLbxQBl/eSOPgDkOVrI2eqED7Mod FUHQ== X-Gm-Message-State: AOAM533Vb1joR3alo/JyP8Lz7iMKyjmgQz0B8jQkrfIxCHNyCU9bYMlK tyE5APSwrCYMqJDTKjuZlZmmSO9SM/fBhTTi+p549tPntTHrsfPGjQmfSmyUKVlusvVG1kAgwcI l64Rv3joL9UDGUXA2lkuoDmyo/Ziwi6kE95OOSjKSQq21MFMeOQs= X-Google-Smtp-Source: ABdhPJxEWHqroSWmB8YKHI82D1BYcAHZntOxKbOGOANiwQTyppupt0T6HWLrPsx3hGp4beF9SuTKLg== X-Received: by 2002:a05:622a:1e0f:: with SMTP id br15mr2929067qtb.416.1643295105485; Thu, 27 Jan 2022 06:51:45 -0800 (PST) Received: from blo.iol.unh.edu ([2606:4100:3880:1270:8f3:b5b9:6ccc:8a5c]) by smtp.gmail.com with ESMTPSA id 195sm1507324qkf.30.2022.01.27.06.51.44 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 27 Jan 2022 06:51:45 -0800 (PST) From: Brandon Lo To: dev@dpdk.org Cc: ciara.power@intel.com, roy.fan.zhang@intel.com, Brandon Lo Subject: [PATCH 0/5] Add JSON vector set support to fips validation Date: Thu, 27 Jan 2022 09:51:37 -0500 Message-Id: <20220127145142.86742-1-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 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 | 84 ++++++++ examples/fips_validation/fips_validation.h | 42 +++- .../fips_validation/fips_validation_gcm.c | 149 ++++++++++++++ examples/fips_validation/main.c | 192 +++++++++++++++++- examples/fips_validation/meson.build | 4 + 5 files changed, 467 insertions(+), 4 deletions(-) -- 2.25.1