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 D23B4A00C4; Sat, 29 Jan 2022 18:55:18 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BB1D040DDD; Sat, 29 Jan 2022 18:55:18 +0100 (CET) Received: from mail-qk1-f178.google.com (mail-qk1-f178.google.com [209.85.222.178]) by mails.dpdk.org (Postfix) with ESMTP id 7664B40041 for ; Sat, 29 Jan 2022 18:55:17 +0100 (CET) Received: by mail-qk1-f178.google.com with SMTP id 71so8410376qkf.4 for ; Sat, 29 Jan 2022 09:55:17 -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=NYMs18h/sImD5FaEW0Rgmp+tmPI31aN+avbvhaw4XO4=; b=NDHeO5yennnhcduHyEk1Jnk9Ax8jnADr1hvG6Rq0vAEGIM+NFD2qGHZG8qtPB0RGyV JLbsnAqFk+cmS1as0sp8NJoGrGFxMfJTf8PdL2hS1th4a7W7ktpiWH8tOEEQnuOwYiW6 7O2wibNVC7VfZmsv08dfksHxc0yLcfZ6UvRA4= 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=NYMs18h/sImD5FaEW0Rgmp+tmPI31aN+avbvhaw4XO4=; b=XHt+dUt4DMQONYRxC7onVXS6scznJ5CsTTxroCG2D+wnnvbMtoARXOomm/EZlNWHim twyjdXPXQL4z/C/JkFyEDsFfifHr+FNL7O/JVZ8PKSdz9uMvxodXsN5FEvIT6zRb0HuO sWZ4X7QqRu7U90O0qpoEHBDrXhhAJZe4WEO4r57sEX/ZbSr/BX+bbM+GSgJpUTIOdcI6 P3U84eFDfdo9Ip4a6dL62PRsl3wOOg9yYmOiL8e+mezhm6bzBC/GEHkxe6FBQ7wKrf+y l1HQCgDSNRNVaD1ZsxO0twdZrRfQQTme6RNwncYnm22IuLShdhu+RAE9ZtPbywjV3lsl 8YQg== X-Gm-Message-State: AOAM530U2GslWmUixzBij7UKJhnPanZ+m6A1/p3uE1ff5Cju4KmhUInX E/RG7NclENoEH5UajtyTi54+KQ== X-Google-Smtp-Source: ABdhPJz8vcH75MoJyGYdY5mIIw7XHtbn++jdBpaMLKKLVzOQ2jUseuAkwD+bVGGxFVzxcBDlYH85HA== X-Received: by 2002:a05:620a:2404:: with SMTP id d4mr4021509qkn.368.1643478916900; Sat, 29 Jan 2022 09:55:16 -0800 (PST) Received: from blo.hsd1.nh.comcast.net ([2601:187:807e:37c0:8f3:b5b9:6ccc:8a5c]) by smtp.gmail.com with ESMTPSA id 195sm5423654qkf.30.2022.01.29.09.55.16 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 29 Jan 2022 09:55:16 -0800 (PST) From: Brandon Lo To: roy.fan.zhang@intel.com, ciara.power@intel.com Cc: dev@dpdk.org, Brandon Lo Subject: [PATCH v3 0/5] Add JSON vector set support to fips validation Date: Sat, 29 Jan 2022 12:55:09 -0500 Message-Id: <20220129175514.746925-1-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220129170313.489986-1-blo@iol.unh.edu> References: <20220129170313.489986-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 | 96 ++++++++- examples/fips_validation/fips_validation.h | 48 ++++- .../fips_validation/fips_validation_gcm.c | 150 ++++++++++++++ examples/fips_validation/main.c | 195 +++++++++++++++++- examples/fips_validation/meson.build | 4 + 5 files changed, 483 insertions(+), 10 deletions(-) -- 2.25.1