From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from abb.hmeau.com (abb.hmeau.com [180.181.231.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DF0DB3BB108; Thu, 11 Jun 2026 08:54:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=180.181.231.80 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781168099; cv=none; b=kIRTZlLKP8hR77Tdzqe45t0X6/0BxVOB8fkgMKb3L8uvBHq2G2THr+3Ln/45vdDCWd/faYcghcQlNdKTGK+EMsXhU9JVuHQ/xvauQv0OEyTnYHQAHUtKmwIC7bcHMFwADrkX2HlD6LbDiRf81s3Ml+lK88EtrmNFnu4kJrCsliI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781168099; c=relaxed/simple; bh=Esp5sxInBJYX/iDPq6hzrrIEF1yn/PDjdHxXfbg0HQY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=PIu4ZXzK5ZIeRvOWfvJE7dXn7JBpgvmuVBoOJoWY5TadXx/z4viItAP4vuUBbKJ/NFbYw9jQTVKXzzl/pdRbp1szbbpHbNCW4mCFg2mgfQ9smEIfQhhFb9BdDVfogs4u91ZKVvxbeicsOXHMuQ4nbibxsLQnfQyvXtFauHWQF8M= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=gondor.apana.org.au; spf=pass smtp.mailfrom=gondor.apana.org.au; dkim=pass (2048-bit key) header.d=gondor.apana.org.au header.i=@gondor.apana.org.au header.b=qz8hrwBE; arc=none smtp.client-ip=180.181.231.80 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=gondor.apana.org.au Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=gondor.apana.org.au Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=gondor.apana.org.au header.i=@gondor.apana.org.au header.b="qz8hrwBE" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gondor.apana.org.au; s=h01; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:cc:to:subject:message-id:date: from:content-type:reply-to; bh=I5x/U2VzLe3MBCuRsZ7KN6kqzlLtIzBLJvLIHMx3AQA=; b=qz8hrwBEqXEJk6lPrC9JP1lRmdmQyNVNOEnNzOOCfg9Qyo+AnwV/3D25p/wFbNRBOHMyP9MvbEs QWH3p5VlhMc9Ledb9gBSYqoUctrxLAwPDCViCJ7aEzrVkUnK+W09FGcfmFLebUeWrxAVYWpeAGmsY VtwVZTfzoxeixc41LRfACzkupUf4/Z0G8l25HDXlkLvwQjDQgmkdDoQJ/Ui1N+x6+ToNkXZFk/4/I Z3jDr3KILoDxPgXaPQv6QgXlHQNN1wgI8Kb/58mmQsyMX/CLPYu0vI0nDfQdYnbLmqCFdugLNQUpW 9kg/9M02DowgoN4xujwHRfH9vhNjmSXuhJ8g==; Received: from loth.rohan.me.apana.org.au ([192.168.167.2]) by formenos.hmeau.com with smtp (Exim 4.98.2 #2 (Debian)) id 1wXbBe-00000004XdM-0mdi; Thu, 11 Jun 2026 16:54:55 +0800 Received: by loth.rohan.me.apana.org.au (sSMTP sendmail emulation); Thu, 11 Jun 2026 16:54:54 +0800 Date: Thu, 11 Jun 2026 16:54:54 +0800 From: Herbert Xu To: Ilya Dryomov Cc: David Howells , linux-crypto@vger.kernel.org, ceph-devel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] crypto: testmgr - allow authenc(hmac(sha{256,384}),cts(cbc(aes))) in FIPS mode Message-ID: References: <20260603155008.736872-1-idryomov@gmail.com> Precedence: bulk X-Mailing-List: linux-crypto@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260603155008.736872-1-idryomov@gmail.com> On Wed, Jun 03, 2026 at 05:50:04PM +0200, Ilya Dryomov wrote: > hmac(sha256), hmac(sha384) and cts(cbc(aes)) algorithms have been > marked as FIPS allowed for years. Mark the respective authenc() > constructions per RFC 8009 ("AES Encryption with HMAC-SHA2 for > Kerberos 5") as such as well. > > SP 800-57 Part 3 Rev. 1 from Jan 2015 [1] links the draft of what > became RFC 8009 in Oct 2016 as approved in section 6.3 Procurement > Guidance (item/recommendation 3). > > [1] https://csrc.nist.gov/pubs/sp/800/57/pt3/r1/final > > Signed-off-by: Ilya Dryomov > --- > crypto/testmgr.c | 2 ++ > 1 file changed, 2 insertions(+) Patch applied. Thanks. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt