aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2017-06-28 07:09:07 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2017-06-28 10:18:58 -0400
commitbcf741cb779283081db47853264cc94854e7ad83 (patch)
tree6ceabd58e1bcf609aca38bcd54f45e4e2fc964aa
parent30b4c54ccdebfc5a0210d9a4d77cc3671c9d1576 (diff)
crypto: testmgr - Reenable sha1/aes in FIPS mode
The combination of sha1 and aes was disabled in FIPS Mode accidentally. This patch reenables it. Fixes: 284a0f6e87b0 ("crypto: testmgr - Disable fips-allowed for...") Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Acked-by: Stephan Müller <smueller@chronox.de>
-rw-r--r--crypto/testmgr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 32087a7acbfb..7125ba3880af 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -2366,6 +2366,7 @@ static const struct alg_test_desc alg_test_descs[] = {
2366 }, { 2366 }, {
2367 .alg = "authenc(hmac(sha1),cbc(aes))", 2367 .alg = "authenc(hmac(sha1),cbc(aes))",
2368 .test = alg_test_aead, 2368 .test = alg_test_aead,
2369 .fips_allowed = 1,
2369 .suite = { 2370 .suite = {
2370 .aead = { 2371 .aead = {
2371 .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp) 2372 .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp)