[CMS] Test decryption of a ciphertext encrypted from 1.1.1
[openssl.git] / test / recipes / 15-test_dsa.t
1 #! /usr/bin/env perl
2 # Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the Apache License 2.0 (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_dsa");
18
19 plan skip_all => 'DSA is not supported in this build' if disabled('dsa');
20 plan tests => 7;
21
22 require_ok(srctop_file('test','recipes','tconversion.pl'));
23
24  SKIP: {
25      skip "Skipping initial dsa tests", 2
26          if disabled('deprecated-3.0');
27
28      ok(run(test(["dsatest"])), "running dsatest");
29      ok(run(test(["dsa_no_digest_size_test"])),
30         "running dsa_no_digest_size_test");
31 }
32
33  SKIP: {
34      skip "Skipping dsa conversion test using 'openssl dsa'", 2
35          if disabled('deprecated-3.0');
36
37      subtest "dsa conversions using 'openssl dsa' -- private key" => sub {
38          tconversion("dsa", srctop_file("test","testdsa.pem"));
39      };
40      subtest "dsa conversions using 'openssl dsa' -- public key" => sub {
41          tconversion("msb", srctop_file("test","testdsapub.pem"), "dsa",
42                      "-pubin", "-pubout");
43      };
44 }
45
46 subtest "dsa conversions using 'openssl pkey' -- private key PKCS#8" => sub {
47     tconversion("dsa", srctop_file("test","testdsa.pem"), "pkey");
48 };
49 subtest "dsa conversions using 'openssl pkey' -- public key" => sub {
50     tconversion("dsa", srctop_file("test","testdsapub.pem"), "pkey",
51                 "-pubin", "-pubout");
52 };