Since md5/shaxxx headers have hash for zero message length, just use them. Signed-off-by: LABBE Corentin <clabbe.montjoie@xxxxxxxxx> --- crypto/testmgr.h | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/crypto/testmgr.h b/crypto/testmgr.h index 03b2f19..9585854 100644 --- a/crypto/testmgr.h +++ b/crypto/testmgr.h @@ -367,8 +367,7 @@ static struct hash_testvec md4_tv_template [] = { static struct hash_testvec md5_tv_template[] = { { - .digest = "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04" - "\xe9\x80\x09\x98\xec\xf8\x42\x7e", + .digest = md5_zero_message_hash, }, { .plaintext = "a", .psize = 1, @@ -713,8 +712,7 @@ static struct hash_testvec sha1_tv_template[] = { { .plaintext = "", .psize = 0, - .digest = "\xda\x39\xa3\xee\x5e\x6b\x4b\x0d\x32\x55" - "\xbf\xef\x95\x60\x18\x90\xaf\xd8\x07\x09", + .digest = sha1_zero_message_hash, }, { .plaintext = "abc", .psize = 3, @@ -905,10 +903,7 @@ static struct hash_testvec sha224_tv_template[] = { { .plaintext = "", .psize = 0, - .digest = "\xd1\x4a\x02\x8c\x2a\x3a\x2b\xc9" - "\x47\x61\x02\xbb\x28\x82\x34\xc4" - "\x15\xa2\xb0\x1f\x82\x8e\xa6\x2a" - "\xc5\xb3\xe4\x2f", + .digest = sha224_zero_message_hash, }, { .plaintext = "abc", .psize = 3, @@ -1079,10 +1074,7 @@ static struct hash_testvec sha256_tv_template[] = { { .plaintext = "", .psize = 0, - .digest = "\xe3\xb0\xc4\x42\x98\xfc\x1c\x14" - "\x9a\xfb\xf4\xc8\x99\x6f\xb9\x24" - "\x27\xae\x41\xe4\x64\x9b\x93\x4c" - "\xa4\x95\x99\x1b\x78\x52\xb8\x55", + .digest = sha256_zero_message_hash, }, { .plaintext = "abc", .psize = 3, -- 2.4.9 -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html