Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto: tesmgr - allow authenc(hmac(sha224/sha384),cbc(aes)) in fips mode

The remaining combinations of AES-CBC and SHA* have already been marked
as allowed. This commit does the same for SHA224 and SHA384.

Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Aleksander Jan Bajkowski and committed by
Herbert Xu
0441ee8d f050e420

+2
+2
crypto/testmgr.c
··· 4134 4134 .alg = "authenc(hmac(sha224),cbc(aes))", 4135 4135 .generic_driver = "authenc(hmac-sha224-lib,cbc(aes-generic))", 4136 4136 .test = alg_test_aead, 4137 + .fips_allowed = 1, 4137 4138 .suite = { 4138 4139 .aead = __VECS(hmac_sha224_aes_cbc_tv_temp) 4139 4140 } ··· 4197 4196 .alg = "authenc(hmac(sha384),cbc(aes))", 4198 4197 .generic_driver = "authenc(hmac-sha384-lib,cbc(aes-generic))", 4199 4198 .test = alg_test_aead, 4199 + .fips_allowed = 1, 4200 4200 .suite = { 4201 4201 .aead = __VECS(hmac_sha384_aes_cbc_tv_temp) 4202 4202 }