diff options
author | Richard Levitte <levitte@openssl.org> | 2015-04-17 20:13:58 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-09-07 16:10:57 +0200 |
commit | 0c85cc506916039bba86e8335aa71e0e44f038b0 (patch) | |
tree | 23c483e74a655fc83f17d7007ec96e2c52513d1c /test/recipes/15-test_ec.t | |
parent | Add a helper script for key file format conversion tests (diff) | |
download | openssl-0c85cc506916039bba86e8335aa71e0e44f038b0.tar.xz openssl-0c85cc506916039bba86e8335aa71e0e44f038b0.zip |
Add asymetric cipher test recipes
Some of them make use of recipes/tconversion.pl.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/recipes/15-test_ec.t')
-rw-r--r-- | test/recipes/15-test_ec.t | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/recipes/15-test_ec.t b/test/recipes/15-test_ec.t new file mode 100644 index 0000000000..6619a480d3 --- /dev/null +++ b/test/recipes/15-test_ec.t @@ -0,0 +1,31 @@ +#! /usr/bin/perl + +use strict; +use warnings; + +use File::Spec; +use Test::More; +use OpenSSL::Test qw/:DEFAULT top_file/; + +setup("test_ec"); + +plan tests => 5; + +require_ok(top_file('test','recipes','tconversion.pl')); + +ok(run(test(["ectest"])), "running ectest"); + + SKIP: { + skip "Skipping ec conversion test", 3 + if run(app(["openssl","no-ec"], stdout => undef)); + + subtest 'ec conversions -- private key' => sub { + tconversion("ec", top_file("test","testec-p256.pem")); + }; + subtest 'ec conversions -- private key PKCS#8' => sub { + tconversion("ec", top_file("test","testec-p256.pem"), "pkey"); + }; + subtest 'ec conversions -- public key' => sub { + tconversion("ec", top_file("test","testecpub-p256.pem"), "ec", "-pubin", "-pubout"); + }; +} |