mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:24:47 +01:00
crypto: testmgr - Fix stale references to aes-generic
Due to commita248447427("crypto: aes - Replace aes-generic with wrapper around lib"), the "aes-generic" driver name has been replaced with "aes-lib". Update a couple testmgr entries that were added concurrently with this change. Fixes:a22d48cbe5("crypto: testmgr - Add test vectors for authenc(hmac(sha224),cbc(aes))") Fixes:030218dede("crypto: testmgr - Add test vectors for authenc(hmac(sha384),cbc(aes))") Acked-by: Aleksander Jan Bajkowski <olek2@wp.pl> Link: https://lore.kernel.org/r/20260302234856.30569-1-ebiggers@kernel.org Signed-off-by: Eric Biggers <ebiggers@kernel.org>
This commit is contained in:
parent
f33ac74f9c
commit
3875ceb592
1 changed files with 2 additions and 2 deletions
|
|
@ -4132,7 +4132,7 @@ static const struct alg_test_desc alg_test_descs[] = {
|
|||
.fips_allowed = 1,
|
||||
}, {
|
||||
.alg = "authenc(hmac(sha224),cbc(aes))",
|
||||
.generic_driver = "authenc(hmac-sha224-lib,cbc(aes-generic))",
|
||||
.generic_driver = "authenc(hmac-sha224-lib,cbc(aes-lib))",
|
||||
.test = alg_test_aead,
|
||||
.suite = {
|
||||
.aead = __VECS(hmac_sha224_aes_cbc_tv_temp)
|
||||
|
|
@ -4194,7 +4194,7 @@ static const struct alg_test_desc alg_test_descs[] = {
|
|||
.fips_allowed = 1,
|
||||
}, {
|
||||
.alg = "authenc(hmac(sha384),cbc(aes))",
|
||||
.generic_driver = "authenc(hmac-sha384-lib,cbc(aes-generic))",
|
||||
.generic_driver = "authenc(hmac-sha384-lib,cbc(aes-lib))",
|
||||
.test = alg_test_aead,
|
||||
.suite = {
|
||||
.aead = __VECS(hmac_sha384_aes_cbc_tv_temp)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue