[PATCH v2 6/6] crypto: tcrypt - add KDF test invocation

From: Stephan Müller
Date: Wed Jan 16 2019 - 06:12:09 EST


Enable testing of the SP800-108 and RFC5869 KDFs.

Signed-off-by: Stephan Mueller <smueller@xxxxxxxxxx>
---
crypto/tcrypt.c | 8 ++++++++
1 file changed, 8 insertions(+)

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);
--
2.20.1