mirror of
https://github.com/openssl/openssl.git
synced 2024-12-26 02:13:45 +08:00
0c85cc5069
Some of them make use of recipes/tconversion.pl. Reviewed-by: Rich Salz <rsalz@openssl.org>
33 lines
777 B
Perl
33 lines
777 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use File::Spec;
|
|
use Test::More;
|
|
use OpenSSL::Test qw/:DEFAULT top_file/;
|
|
|
|
setup("test_rsa");
|
|
|
|
plan tests => 5;
|
|
|
|
require_ok(top_file('test','recipes','tconversion.pl'));
|
|
|
|
ok(run(test(["rsa_test"])), "running rsatest");
|
|
|
|
SKIP: {
|
|
skip "Skipping rsa conversion test", 3
|
|
if run(app(["openssl","no-rsa"], stdout => undef));
|
|
|
|
subtest 'rsa conversions -- private key' => sub {
|
|
tconversion("rsa", top_file("test","testrsa.pem"));
|
|
};
|
|
subtest 'rsa conversions -- private key PKCS#8' => sub {
|
|
tconversion("rsa", top_file("test","testrsa.pem"), "pkey");
|
|
};
|
|
subtest 'rsa conversions -- public key' => sub {
|
|
tconversion("rsa", top_file("test","testrsapub.pem"), "rsa",
|
|
"-pubin", "-pubout");
|
|
};
|
|
}
|