]> git.ipfire.org Git - thirdparty/openssl.git/blob - test/recipes/15-test_ec.t
a1c704a3f08bf7359f0aebe4ffb8ddaf73ee48cb
[thirdparty/openssl.git] / test / recipes / 15-test_ec.t
1 #! /usr/bin/env perl
2 # Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the OpenSSL license (the "License"). You may not use
5 # this file except in compliance with the License. You can obtain a copy
6 # in the file LICENSE in the source distribution or at
7 # https://www.openssl.org/source/license.html
8
9
10 use strict;
11 use warnings;
12
13 use File::Spec;
14 use OpenSSL::Test qw/:DEFAULT srctop_file/;
15 use OpenSSL::Test::Utils;
16
17 setup("test_ec");
18
19 plan tests => 5;
20
21 require_ok(srctop_file('test','recipes','tconversion.pl'));
22
23 ok(run(test(["ectest"])), "running ectest");
24
25 SKIP: {
26 skip "Skipping ec conversion test", 3
27 if disabled("ec");
28
29 subtest 'ec conversions -- private key' => sub {
30 tconversion("ec", srctop_file("test","testec-p256.pem"));
31 };
32 subtest 'ec conversions -- private key PKCS#8' => sub {
33 tconversion("ec", srctop_file("test","testec-p256.pem"), "pkey");
34 };
35 subtest 'ec conversions -- public key' => sub {
36 tconversion("ec", srctop_file("test","testecpub-p256.pem"), "ec", "-pubin", "-pubout");
37 };
38 }