From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7C5D1A0556; Thu, 20 Feb 2020 11:19:21 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9CB101BFD2; Thu, 20 Feb 2020 11:19:20 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.120]) by dpdk.org (Postfix) with ESMTP id E5AF51BFB6 for ; Thu, 20 Feb 2020 11:19:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1582193958; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=seuSHOdWiefzmHJ2/8rlAE4Po2LBC9ErS4fA7Q0ydh8=; b=ayblcX/00pRJKiiSQc7WLXscIxGMjo2IUDz2GsIGfJk6RD1NjLSak6wYPBagfqxZISceJ1 QFdaDC7QRSMiYodHqkrgeE1Iqd0jRom0xc/FxgH6bcCHSSueXAQHSUTMvMZLoRXPtQNxAL 1OJG7Q31lY6lwiJkwX+4lu7o+0hXTOo= Received: from mail-vs1-f72.google.com (mail-vs1-f72.google.com [209.85.217.72]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-42-FPbh0IYdPKyDCcJ0t8KATQ-1; Thu, 20 Feb 2020 05:19:14 -0500 X-MC-Unique: FPbh0IYdPKyDCcJ0t8KATQ-1 Received: by mail-vs1-f72.google.com with SMTP id x1so545510vsj.17 for ; Thu, 20 Feb 2020 02:19:14 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=nolwAZF8k/1P9lhe4yjWSZ/gcF5b6NzTIVTseA+1tqQ=; b=MSpQJXrOA5sVDJykT3noj/HoM1uCyaA54HfLmn7HBZM+lxkfFpqLL2hWeP5Fws2xgv dw5ab4zTYrdqXZmx4P8oBmaPUjAMsOS5pv9DLmljvShsMFxsCg3vSkDBPv/58ydhMooB FVEt5AaphMuE8UBwSAZNMN+iPwtvvG5nWrGhWUMnaoZ/AZtSrC0FCT9Ckp+P1utAYTrS uSI+tz0/SegNlerugrYwhFMaA2WS0dHfwh5zFNmoPPNH6qdPU7naazeHceNmHmY6KT25 nDzG74BNVxdscTfZjRBaGFytruFbHkdJrfuXB2MeGnHbjpl4nsscIgVmctbu1bGzQLya py2Q== X-Gm-Message-State: APjAAAXoPm22p3Um06CJzZ0AQ9dZqCtarqA7wZAOP7iBipfYvZqc/wfy s77PvHgGW299lnpLEAAgmZiNB9MMHzdUXe5ZoX70CcXNWhUltRfaSE1sg3wbM1Usnsj5Wn3LNSv DkMlNYQWMYDdN1avHSk0= X-Received: by 2002:ab0:488b:: with SMTP id x11mr15589834uac.86.1582193953965; Thu, 20 Feb 2020 02:19:13 -0800 (PST) X-Google-Smtp-Source: APXvYqwYw6LI3TJUvT8BIfOsBPCkUKiNLcHXp42gd6rCMBYd/kw10YwpDXiCqnvL7RVnpXtI5KTZYi0vJR4I5OfDCCE= X-Received: by 2002:ab0:488b:: with SMTP id x11mr15589826uac.86.1582193953692; Thu, 20 Feb 2020 02:19:13 -0800 (PST) MIME-Version: 1.0 References: <1582019075-7932-1-git-send-email-anoobj@marvell.com> <1582021872-8173-1-git-send-email-anoobj@marvell.com> In-Reply-To: From: David Marchand Date: Thu, 20 Feb 2020 11:19:02 +0100 Message-ID: To: Akhil Goyal Cc: Anoob Joseph , Marko Kovacevic , Fan Zhang , Narayana Prasad , "dev@dpdk.org" X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v2] examples/fips_validation: fix incorrect string for CT length X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Thu, Feb 20, 2020 at 11:15 AM Akhil Goyal wrote: > > The NIST test vectors use the string 'PTlen' to denote text lengths > > in case of encrypt & decrypt operations. So the same string need to be > > used while parsing PT and CT. > > > > Fixes: 2adb3b4e7e54 ("examples/fips_validation: fix AES-GCM cipher leng= th > > parsing") > > > > Signed-off-by: Anoob Joseph > > --- > > > Acked-by: Akhil Goyal > > Are you picking this patch or is it intended for crypto tree? I'll take it. --=20 David Marchand