summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorRadu Alexe <radu.alexe@nxp.com>2017-04-13 09:36:32 +0300
committerDong Aisheng <aisheng.dong@nxp.com>2021-11-02 20:28:22 +0800
commitd75c2ec02e0f8fe4dd3086b380def44cfbba127e (patch)
tree85644c9e1ccc67ac98c055e89a4caffbbf2d918c /crypto
parent922c229d9f78c3c7779f6a14ee86421996a97a45 (diff)
crypto: tcrypt - include rsa test
Signed-off-by: Radu Alexe <radu.alexe@nxp.com> Signed-off-by: Tudor Ambarus <tudor-dan.ambarus@nxp.com>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/tcrypt.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index 90be797dd467..f0fe42bebc2a 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -72,8 +72,8 @@ static const char *check[] = {
"cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea",
"khazad", "wp512", "wp384", "wp256", "xeta", "fcrypt",
"camellia", "seed", "rmd160",
- "lzo", "lzo-rle", "cts", "sha3-224", "sha3-256", "sha3-384",
- "sha3-512", "streebog256", "streebog512",
+ "lzo", "lzo-rle", "cts", "zlib", "sha3-224", "sha3-256", "sha3-384",
+ "sha3-512", "streebog256", "streebog512", "rsa",
NULL
};
@@ -1984,6 +1984,10 @@ static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb)
ret += tcrypt_test("hmac(streebog512)");
break;
+ case 117:
+ ret += tcrypt_test("rsa");
+ break;
+
case 150:
ret += tcrypt_test("ansi_cprng");
break;