Commit bcf741cb authored by Herbert Xu's avatar Herbert Xu

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: 284a0f6e ("crypto: testmgr - Disable fips-allowed for...")
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Acked-by: default avatarStephan Müller <smueller@chronox.de>
parent 30b4c54c
...@@ -2366,6 +2366,7 @@ static const struct alg_test_desc alg_test_descs[] = { ...@@ -2366,6 +2366,7 @@ static const struct alg_test_desc alg_test_descs[] = {
}, { }, {
.alg = "authenc(hmac(sha1),cbc(aes))", .alg = "authenc(hmac(sha1),cbc(aes))",
.test = alg_test_aead, .test = alg_test_aead,
.fips_allowed = 1,
.suite = { .suite = {
.aead = { .aead = {
.enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp) .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment