15-test_dsa.t 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. use strict;
  9. use warnings;
  10. use File::Spec;
  11. use OpenSSL::Test qw/:DEFAULT srctop_file/;
  12. use OpenSSL::Test::Utils;
  13. setup("test_dsa");
  14. plan tests => 5;
  15. require_ok(srctop_file('test','recipes','tconversion.pl'));
  16. ok(run(test(["dsatest"])), "running dsatest");
  17. SKIP: {
  18. skip "Skipping dsa conversion test", 3
  19. if disabled("dsa");
  20. subtest 'dsa conversions -- private key' => sub {
  21. tconversion("dsa", srctop_file("test","testdsa.pem"));
  22. };
  23. subtest 'dsa conversions -- private key PKCS#8' => sub {
  24. tconversion("dsa", srctop_file("test","testdsa.pem"), "pkey");
  25. };
  26. subtest 'dsa conversions -- public key' => sub {
  27. tconversion("msb", srctop_file("test","testdsapub.pem"), "dsa",
  28. "-pubin", "-pubout");
  29. };
  30. }