Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1605115

[PATCH] crypto: testmgr - mark ctr(des3_ede) as fips_allowed

From Marcelo Henrique Cerri <marcelo.cerri@canonical.com>
Newsgroups linux.kernel
Subject [PATCH] crypto: testmgr - mark ctr(des3_ede) as fips_allowed
Date 2017-03-20 21:30 +0100
Message-ID <tnc6e-1uQ-3@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


3DES is missing the fips_allowed flag for CTR mode.

Signed-off-by: Marcelo Henrique Cerri <marcelo.cerri@canonical.com>
---
 crypto/testmgr.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 89f1dd1f4b13..cd075c7d8ee1 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -2645,6 +2645,7 @@ static const struct alg_test_desc alg_test_descs[] = {
 	}, {
 		.alg = "ctr(des3_ede)",
 		.test = alg_test_skcipher,
+		.fips_allowed = 1,
 		.suite = {
 			.cipher = {
 				.enc = __VECS(des3_ede_ctr_enc_tv_template),
-- 
2.7.4

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] crypto: testmgr - mark ctr(des3_ede) as fips_allowed Marcelo Henrique Cerri <marcelo.cerri@canonical.com> - 2017-03-20 21:30 +0100
  Re: [PATCH] crypto: testmgr - mark ctr(des3_ede) as fips_allowed Stephan Müller <smueller@chronox.de> - 2017-03-20 21:50 +0100
  Re: [PATCH] crypto: testmgr - mark ctr(des3_ede) as fips_allowed Herbert Xu <herbert@gondor.apana.org.au> - 2017-03-24 15:20 +0100

csiph-web