From 1d20a60e4a8995b74261cf837ed2658dbd773e0d Mon Sep 17 00:00:00 2001 From: Milan Broz Date: Sun, 23 May 2021 11:12:10 +0200 Subject: [PATCH] Do not use Whirlpool hash in tests (some crypto backends do not implement it). --- tests/api-test-2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api-test-2.c b/tests/api-test-2.c index a5dc095a..fe7363e1 100644 --- a/tests/api-test-2.c +++ b/tests/api-test-2.c @@ -2560,7 +2560,7 @@ static void Pbkdf(void) .size = 0 }; struct crypt_params_luks1 luks1 = { - .hash = "whirlpool", // test non-standard hash + .hash = "sha512", // test non-standard hash .data_alignment = 2048, };