diff options
author | Vladis Dronov <vdronov@redhat.com> | 2024-02-29 20:36:03 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2024-03-08 14:23:25 +0300 |
commit | 43a7885ec0dfca2bdc60f2de736e55cf5e7b915d (patch) | |
tree | 7a38530c3861413adac1cdc292a771d22cf5697f /crypto | |
parent | 30dd94dba350043a32cfe9cb478ed621aae3c5c9 (diff) | |
download | linux-43a7885ec0dfca2bdc60f2de736e55cf5e7b915d.tar.xz |
crypto: tcrypt - add ffdhe2048(dh) test
Commit 7dce59819750 ("crypto: dh - implement ffdheXYZ(dh) templates")
implemented the said templates. Add ffdhe2048(dh) test as it is the
fastest one. This is a requirement for the FIPS certification.
Signed-off-by: Vladis Dronov <vdronov@redhat.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/tcrypt.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index ea4d1cea9c06..8aea416f6480 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -1851,6 +1851,9 @@ static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb) ret = min(ret, tcrypt_test("cbc(aria)")); ret = min(ret, tcrypt_test("ctr(aria)")); break; + case 193: + ret = min(ret, tcrypt_test("ffdhe2048(dh)")); + break; case 200: test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0, speed_template_16_24_32); |