openssl/test/recipes/15-test_ec.t
Richard Levitte 0c85cc5069 Add asymetric cipher test recipes
Some of them make use of recipes/tconversion.pl.

Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-09-07 16:10:57 +02:00

32 lines
769 B
Perl

#! /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");
};
}