From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 26966C3DA79 for ; Thu, 29 Dec 2022 21:02:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229613AbiL2VCB (ORCPT ); Thu, 29 Dec 2022 16:02:01 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34114 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229773AbiL2VB6 (ORCPT ); Thu, 29 Dec 2022 16:01:58 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1735714085; Thu, 29 Dec 2022 13:01:57 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id B19A96182E; Thu, 29 Dec 2022 21:01:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CFCDCC433EF; Thu, 29 Dec 2022 21:01:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672347716; bh=aBwFnT250YVU/jh6JU0/iuLAGehjoULmLrg4gYVFCg8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Be9OZMULOY03UyOCYTmjr/JfxPAKDMY4qE7rMCbB8pBvmA/KX8sGtxWQI1RBsW30J oV/sSPfJcoG1cSDtwpYrDbz998RjvV/J3kxYirAzpcBZJHpT6fIadvCx++xaRZRg6b qiXToTcL0+eo2qcz9zxqy8c6CFPVMT9QRGIcF5wRg9XOOS5pJywEmnRWrEbvVn2G3g YyQUYgu/JhYTS+RlSHVzQBhz3NyxBJFz1gahbvjJnI+SMB4syoZL1zaUtPUh9xwAFr uDaakvT7ORyh/LpxqcQcSVES6J0CiuunSXkp6gODvCi+Zv9OQ5D8ruLAP39wYYHCJC BaNBAxe4onMpA== Date: Thu, 29 Dec 2022 13:01:54 -0800 From: Eric Biggers To: Vladis Dronov Cc: Herbert Xu , "David S . Miller" , Nicolai Stange , Elliott Robert , Stephan Mueller , linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 6/6] crypto: testmgr - allow ecdsa-nist-p256 and -p384 in FIPS mode Message-ID: References: <20221229203708.13628-1-vdronov@redhat.com> <20221229203708.13628-7-vdronov@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221229203708.13628-7-vdronov@redhat.com> Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org On Thu, Dec 29, 2022 at 09:37:08PM +0100, Vladis Dronov wrote: > From: Nicolai Stange > > The kernel provides implementations of the NIST ECDSA signature > verification primitives. For key sizes of 256 and 384 bits respectively > they are approved and can be enabled in FIPS mode. Do so. > > Signed-off-by: Nicolai Stange > Signed-off-by: Vladis Dronov > Reviewed-by: Eric Biggers Please don't add my Reviewed-by to patches I didn't review. I only gave Reviewed-by on "[PATCH 2/6] crypto: xts - drop xts_check_key()". I didn't look at the other patches in the series much, as I'm not very interested in them. - Eric