Skip to content

Commit 3875ceb

Browse files
author
Eric Biggers
committed
crypto: testmgr - Fix stale references to aes-generic
Due to commit a248447 ("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: a22d48c ("crypto: testmgr - Add test vectors for authenc(hmac(sha224),cbc(aes))") Fixes: 030218d ("crypto: testmgr - Add test vectors for authenc(hmac(sha384),cbc(aes))") Acked-by: Aleksander Jan Bajkowski <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Eric Biggers <[email protected]>
1 parent f33ac74 commit 3875ceb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crypto/testmgr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4132,7 +4132,7 @@ static const struct alg_test_desc alg_test_descs[] = {
41324132
.fips_allowed = 1,
41334133
}, {
41344134
.alg = "authenc(hmac(sha224),cbc(aes))",
4135-
.generic_driver = "authenc(hmac-sha224-lib,cbc(aes-generic))",
4135+
.generic_driver = "authenc(hmac-sha224-lib,cbc(aes-lib))",
41364136
.test = alg_test_aead,
41374137
.suite = {
41384138
.aead = __VECS(hmac_sha224_aes_cbc_tv_temp)
@@ -4194,7 +4194,7 @@ static const struct alg_test_desc alg_test_descs[] = {
41944194
.fips_allowed = 1,
41954195
}, {
41964196
.alg = "authenc(hmac(sha384),cbc(aes))",
4197-
.generic_driver = "authenc(hmac-sha384-lib,cbc(aes-generic))",
4197+
.generic_driver = "authenc(hmac-sha384-lib,cbc(aes-lib))",
41984198
.test = alg_test_aead,
41994199
.suite = {
42004200
.aead = __VECS(hmac_sha384_aes_cbc_tv_temp)

0 commit comments

Comments
 (0)