diff options
author | Herbert Xu | 2021-03-26 19:55:55 +1100 |
---|---|---|
committer | Herbert Xu | 2021-03-26 19:55:55 +1100 |
commit | 3877869d13a043a2dbab0d034e5eac3b21f4994d (patch) | |
tree | 187ed20226bc810997d968365cc25dbb683c0977 /crypto/testmgr.c | |
parent | befb1ddaece17e346550b6f2bb494ba58d67af43 (diff) | |
parent | 2a8e615436de4cd59a7b0af43590ede899906bdf (diff) |
Merge branch 'ecc'
This pulls in the NIST P384/256/192 x509 changes.
Diffstat (limited to 'crypto/testmgr.c')
-rw-r--r-- | crypto/testmgr.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c index fbe5d6486f8c..10c5b3b01ec4 100644 --- a/crypto/testmgr.c +++ b/crypto/testmgr.c @@ -4915,6 +4915,24 @@ static const struct alg_test_desc alg_test_descs[] = { .kpp = __VECS(ecdh_p256_tv_template) } }, { + .alg = "ecdsa-nist-p192", + .test = alg_test_akcipher, + .suite = { + .akcipher = __VECS(ecdsa_nist_p192_tv_template) + } + }, { + .alg = "ecdsa-nist-p256", + .test = alg_test_akcipher, + .suite = { + .akcipher = __VECS(ecdsa_nist_p256_tv_template) + } + }, { + .alg = "ecdsa-nist-p384", + .test = alg_test_akcipher, + .suite = { + .akcipher = __VECS(ecdsa_nist_p384_tv_template) + } + }, { .alg = "ecrdsa", .test = alg_test_akcipher, .suite = { |