Message ID | 2181239.cWAz3ldHXA@positron.chronox.de (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
Series | Encryption and authentication for hibernate snapshot image | expand |
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index e7fb87e114a5..5606e59e80ec 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -2054,6 +2054,14 @@ static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb) ret += tcrypt_test("cbc(sm4)"); ret += tcrypt_test("ctr(sm4)"); break; + case 192: + ret += tcrypt_test("kdf_ctr(hmac(sha256))"); + ret += tcrypt_test("kdf_dpi(hmac(sha256))"); + ret += tcrypt_test("kdf_fb(hmac(sha256))"); + break; + case 193: + ret += tcrypt_test("hkdf(hmac(sha256))"); + break; case 200: test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0, speed_template_16_24_32);
Enable testing of the SP800-108 and RFC5869 KDFs. Signed-off-by: Stephan Mueller <smueller@chronox.de> --- crypto/tcrypt.c | 8 ++++++++ 1 file changed, 8 insertions(+)