From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarod Wilson Subject: [PATCH] crypto/testmgr: mark rfc4106(gcm(aes)) as fips_allowed Date: Fri, 23 Jan 2015 12:42:15 -0500 Message-ID: <1422034935-25537-1-git-send-email-jarod@redhat.com> Cc: Jarod Wilson , LKML , Stephan Mueller To: linux-crypto@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:60928 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751349AbbAWRm2 (ORCPT ); Fri, 23 Jan 2015 12:42:28 -0500 Sender: linux-crypto-owner@vger.kernel.org List-ID: This gcm variant is popular for ipsec use, and there are folks who would like to use it while in fips mode. Mark it with fips_allowed=1 to facilitate that. CC: LKML CC: Stephan Mueller Signed-off-by: Jarod Wilson --- crypto/testmgr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/testmgr.c b/crypto/testmgr.c index 235b1ff..758d028 100644 --- a/crypto/testmgr.c +++ b/crypto/testmgr.c @@ -3293,6 +3293,7 @@ static const struct alg_test_desc alg_test_descs[] = { }, { .alg = "rfc4106(gcm(aes))", .test = alg_test_aead, + .fips_allowed = 1, .suite = { .aead = { .enc = { -- 1.8.3.1