This website requires JavaScript.
Explore
Help
Sign In
mirror
/
openssl
Watch
2
Star
0
Fork
0
You've already forked openssl
mirror of
https://github.com/openssl/openssl.git
synced
2024-12-03 05:41:46 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
ff75a25749
openssl
/
test
/
recipes
/
15-test_ecdsa.t
6 lines
92 B
Perl
Raw
Normal View
History
Unescape
Escape
Add asymetric cipher test recipes Some of them make use of recipes/tconversion.pl. Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-04-18 02:13:58 +08:00
#! /usr/bin/perl
Simplify very simple test recipes further. Very simple test recipes easily become tedious, so they might benefit from being made as simple as possible. Therefore, OpenSSL::Test::Simple is born. It currently provides but one function, simple_test(), which takes a minimum of two parameters (test name and program to run), with the optional third, being the algorithm to be checked for before running the test itself. All recipes with that simple thing to do have been rewritten to be as minimal as possible. Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-04-22 01:29:01 +08:00
use
OpenSSL::Test::Simple
;
Add asymetric cipher test recipes Some of them make use of recipes/tconversion.pl. Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-04-18 02:13:58 +08:00
Fix a few tests that depended on the wrong algorithm check test_ecdh and test_ecdsa are made to depend on no-ec being false. test_hmac is made not to depend on algorithm at all. Based on a contribution by Alessandro Ghedini <alessandro@ghedini.me> Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-09-08 07:23:49 +08:00
simple_test
(
"test_ecdsa"
,
"ecdsatest"
,
"ec"
)
;
Reference in New Issue
Copy Permalink