15-test_dsa.t 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. 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 => 6;
  15. require_ok(srctop_file('test','recipes','tconversion.pl'));
  16. ok(run(test(["dsatest"])), "running dsatest");
  17. ok(run(test(["dsa_no_digest_size_test"])), "running dsa_no_digest_size_test");
  18. SKIP: {
  19. skip "Skipping dsa conversion test", 3
  20. if disabled("dsa");
  21. subtest 'dsa conversions -- private key' => sub {
  22. tconversion("dsa", srctop_file("test","testdsa.pem"));
  23. };
  24. subtest 'dsa conversions -- private key PKCS#8' => sub {
  25. tconversion("dsa", srctop_file("test","testdsa.pem"), "pkey");
  26. };
  27. subtest 'dsa conversions -- public key' => sub {
  28. tconversion("msb", srctop_file("test","testdsapub.pem"), "dsa",
  29. "-pubin", "-pubout");
  30. };
  31. }