diff options
author | Bryan Donlan <bdonlan@amazon.com> | 2018-07-17 22:04:09 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2018-07-29 21:27:36 +0200 |
commit | cb809437d391176a1c2e76f6da77a790c9382c4b (patch) | |
tree | e1f2e04b37a42c7cf7ca6249fa37b65400241b6d /test/recipes/15-test_dsa.t | |
parent | Remove DSA digest length checks when no digest is passed (diff) | |
download | openssl-cb809437d391176a1c2e76f6da77a790c9382c4b.tar.xz openssl-cb809437d391176a1c2e76f6da77a790c9382c4b.zip |
Add test for DSA signatures of raw digests of various sizes
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6749)
Diffstat (limited to 'test/recipes/15-test_dsa.t')
-rw-r--r-- | test/recipes/15-test_dsa.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/recipes/15-test_dsa.t b/test/recipes/15-test_dsa.t index 311b9b3e0a..c8f61cca21 100644 --- a/test/recipes/15-test_dsa.t +++ b/test/recipes/15-test_dsa.t @@ -16,11 +16,12 @@ use OpenSSL::Test::Utils; setup("test_dsa"); -plan tests => 5; +plan tests => 6; require_ok(srctop_file('test','recipes','tconversion.pl')); ok(run(test(["dsatest"])), "running dsatest"); +ok(run(test(["dsa_no_digest_size_test"])), "running dsa_no_digest_size_test"); SKIP: { skip "Skipping dsa conversion test", 3 |