aboutsummaryrefslogtreecommitdiffstats
path: root/test/recipes/15-test_ecdh.t
Commit message (Collapse)AuthorAgeFilesLines
* Remove ecdhtest.cNicola Tuveri2017-04-141-12/+0
| | | | | | | All tests from ecdhtest.c have been ported to evptests.txt Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3219)
* Unified copyright for test recipesRich Salz2016-04-221-1/+8
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Fix a few tests that depended on the wrong algorithm checkRichard Levitte2015-09-081-1/+1
| | | | | | | | | 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>
* Simplify very simple test recipes further.Richard Levitte2015-09-071-9/+2
| | | | | | | | | | | | | | 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>
* Add asymetric cipher test recipesRichard Levitte2015-09-071-0/+12
Some of them make use of recipes/tconversion.pl. Reviewed-by: Rich Salz <rsalz@openssl.org>