2016-04-22 19:21:51 +08:00
|
|
|
#! /usr/bin/env perl
|
2020-04-23 20:55:52 +08:00
|
|
|
# Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2016-04-22 19:21:51 +08:00
|
|
|
#
|
2018-12-06 20:05:25 +08:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-04-22 19:21:51 +08:00
|
|
|
# this file except in compliance with the License. You can obtain a copy
|
|
|
|
# in the file LICENSE in the source distribution or at
|
|
|
|
# https://www.openssl.org/source/license.html
|
|
|
|
|
2015-04-18 02:15:22 +08:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2016-06-04 07:05:06 +08:00
|
|
|
use OpenSSL::Test::Utils;
|
2016-01-30 08:05:33 +08:00
|
|
|
use OpenSSL::Test qw/:DEFAULT srctop_file/;
|
2015-04-18 02:15:22 +08:00
|
|
|
|
|
|
|
setup("test_req");
|
|
|
|
|
2020-03-05 03:41:53 +08:00
|
|
|
plan tests => 16;
|
2015-04-18 02:15:22 +08:00
|
|
|
|
2016-01-30 08:05:33 +08:00
|
|
|
require_ok(srctop_file('test','recipes','tconversion.pl'));
|
2015-04-18 02:15:22 +08:00
|
|
|
|
2018-07-10 02:55:17 +08:00
|
|
|
# What type of key to generate?
|
|
|
|
my @req_new;
|
|
|
|
if (disabled("rsa")) {
|
|
|
|
@req_new = ("-newkey", "dsa:".srctop_file("apps", "dsa512.pem"));
|
|
|
|
} else {
|
|
|
|
@req_new = ("-new");
|
|
|
|
note("There should be a 2 sequences of .'s and some +'s.");
|
|
|
|
note("There should not be more that at most 80 per line");
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check for duplicate -addext parameters, and one "working" case.
|
|
|
|
my @addext_args = ( "openssl", "req", "-new", "-out", "testreq.pem",
|
|
|
|
"-config", srctop_file("test", "test.cnf"), @req_new );
|
2018-07-06 07:57:22 +08:00
|
|
|
my $val = "subjectAltName=DNS:example.com";
|
|
|
|
my $val2 = " " . $val;
|
|
|
|
my $val3 = $val;
|
|
|
|
$val3 =~ s/=/ =/;
|
2018-07-10 02:55:17 +08:00
|
|
|
ok( run(app([@addext_args, "-addext", $val])));
|
|
|
|
ok(!run(app([@addext_args, "-addext", $val, "-addext", $val])));
|
|
|
|
ok(!run(app([@addext_args, "-addext", $val, "-addext", $val2])));
|
|
|
|
ok(!run(app([@addext_args, "-addext", $val, "-addext", $val3])));
|
|
|
|
ok(!run(app([@addext_args, "-addext", $val2, "-addext", $val3])));
|
2018-07-06 07:57:22 +08:00
|
|
|
|
2020-03-05 03:41:53 +08:00
|
|
|
subtest "generating alt certificate requests with RSA" => sub {
|
|
|
|
plan tests => 3;
|
|
|
|
|
|
|
|
SKIP: {
|
|
|
|
skip "RSA is not supported by this OpenSSL build", 2
|
|
|
|
if disabled("rsa");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
|
|
|
"-section", "altreq",
|
|
|
|
"-new", "-out", "testreq-rsa.pem", "-utf8",
|
|
|
|
"-key", srctop_file("test", "testrsa.pem")])),
|
|
|
|
"Generating request");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
|
|
|
"-verify", "-in", "testreq-rsa.pem", "-noout"])),
|
|
|
|
"Verifying signature on request");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
|
|
|
"-section", "altreq",
|
|
|
|
"-verify", "-in", "testreq-rsa.pem", "-noout"])),
|
|
|
|
"Verifying signature on request");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-10-31 23:17:31 +08:00
|
|
|
subtest "generating certificate requests with RSA" => sub {
|
|
|
|
plan tests => 2;
|
|
|
|
|
|
|
|
SKIP: {
|
|
|
|
skip "RSA is not supported by this OpenSSL build", 2
|
|
|
|
if disabled("rsa");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-new", "-out", "testreq-rsa.pem", "-utf8",
|
2019-10-31 23:17:31 +08:00
|
|
|
"-key", srctop_file("test", "testrsa.pem")])),
|
|
|
|
"Generating request");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-verify", "-in", "testreq-rsa.pem", "-noout"])),
|
2019-10-31 23:17:31 +08:00
|
|
|
"Verifying signature on request");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
subtest "generating certificate requests with DSA" => sub {
|
|
|
|
plan tests => 2;
|
|
|
|
|
|
|
|
SKIP: {
|
|
|
|
skip "DSA is not supported by this OpenSSL build", 2
|
|
|
|
if disabled("dsa");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-new", "-out", "testreq-dsa.pem", "-utf8",
|
2019-10-31 23:17:31 +08:00
|
|
|
"-key", srctop_file("test", "testdsa.pem")])),
|
|
|
|
"Generating request");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-verify", "-in", "testreq-dsa.pem", "-noout"])),
|
2019-10-31 23:17:31 +08:00
|
|
|
"Verifying signature on request");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
subtest "generating certificate requests with ECDSA" => sub {
|
|
|
|
plan tests => 2;
|
|
|
|
|
|
|
|
SKIP: {
|
|
|
|
skip "ECDSA is not supported by this OpenSSL build", 2
|
|
|
|
if disabled("ec");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-new", "-out", "testreq-ec.pem", "-utf8",
|
2019-10-31 23:17:31 +08:00
|
|
|
"-key", srctop_file("test", "testec-p256.pem")])),
|
|
|
|
"Generating request");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-verify", "-in", "testreq-ec.pem", "-noout"])),
|
2019-10-31 23:17:31 +08:00
|
|
|
"Verifying signature on request");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-11-11 18:13:10 +08:00
|
|
|
subtest "generating certificate requests with Ed25519" => sub {
|
|
|
|
plan tests => 2;
|
|
|
|
|
|
|
|
SKIP: {
|
|
|
|
skip "Ed25519 is not supported by this OpenSSL build", 2
|
|
|
|
if disabled("ec");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-new", "-out", "testreq-ed25519.pem", "-utf8",
|
2019-11-11 18:13:10 +08:00
|
|
|
"-key", srctop_file("test", "tested25519.pem")])),
|
|
|
|
"Generating request");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-verify", "-in", "testreq-ed25519.pem", "-noout"])),
|
2019-11-11 18:13:10 +08:00
|
|
|
"Verifying signature on request");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
subtest "generating certificate requests with Ed448" => sub {
|
|
|
|
plan tests => 2;
|
|
|
|
|
|
|
|
SKIP: {
|
|
|
|
skip "Ed448 is not supported by this OpenSSL build", 2
|
|
|
|
if disabled("ec");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-new", "-out", "testreq-ed448.pem", "-utf8",
|
2019-11-11 18:13:10 +08:00
|
|
|
"-key", srctop_file("test", "tested448.pem")])),
|
|
|
|
"Generating request");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-verify", "-in", "testreq-ed448.pem", "-noout"])),
|
2019-11-11 18:13:10 +08:00
|
|
|
"Verifying signature on request");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-04 07:05:06 +08:00
|
|
|
subtest "generating certificate requests" => sub {
|
|
|
|
plan tests => 2;
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req", "-config", srctop_file("test", "test.cnf"),
|
2019-10-31 23:17:31 +08:00
|
|
|
@req_new, "-out", "testreq.pem"])),
|
2016-06-04 07:05:06 +08:00
|
|
|
"Generating request");
|
|
|
|
|
|
|
|
ok(run(app(["openssl", "req", "-config", srctop_file("test", "test.cnf"),
|
2019-10-31 23:17:31 +08:00
|
|
|
"-verify", "-in", "testreq.pem", "-noout"])),
|
2016-06-04 07:05:06 +08:00
|
|
|
"Verifying signature on request");
|
|
|
|
};
|
|
|
|
|
2019-06-05 14:46:48 +08:00
|
|
|
subtest "generating SM2 certificate requests" => sub {
|
2019-07-30 23:05:44 +08:00
|
|
|
plan tests => 4;
|
2019-06-05 14:46:48 +08:00
|
|
|
|
|
|
|
SKIP: {
|
2019-07-30 23:05:44 +08:00
|
|
|
skip "SM2 is not supported by this OpenSSL build", 4
|
2019-06-05 14:46:48 +08:00
|
|
|
if disabled("sm2");
|
2019-10-31 23:17:31 +08:00
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2019-06-05 14:46:48 +08:00
|
|
|
"-new", "-key", srctop_file("test", "certs", "sm2.key"),
|
2020-03-11 06:10:29 +08:00
|
|
|
"-sigopt", "distid:1234567812345678",
|
2020-02-13 07:28:31 +08:00
|
|
|
"-out", "testreq-sm2.pem", "-sm3"])),
|
2019-06-05 14:46:48 +08:00
|
|
|
"Generating SM2 certificate request");
|
|
|
|
|
2019-10-31 23:17:31 +08:00
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-verify", "-in", "testreq-sm2.pem", "-noout",
|
2020-03-11 06:10:29 +08:00
|
|
|
"-vfyopt", "distid:1234567812345678", "-sm3"])),
|
2019-06-05 14:46:48 +08:00
|
|
|
"Verifying signature on SM2 certificate request");
|
2019-07-30 23:05:44 +08:00
|
|
|
|
2019-10-31 23:17:31 +08:00
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2019-07-30 23:05:44 +08:00
|
|
|
"-new", "-key", srctop_file("test", "certs", "sm2.key"),
|
2020-03-11 06:10:29 +08:00
|
|
|
"-sigopt", "hexdistid:DEADBEEF",
|
2020-02-13 07:28:31 +08:00
|
|
|
"-out", "testreq-sm2.pem", "-sm3"])),
|
2019-07-30 23:05:44 +08:00
|
|
|
"Generating SM2 certificate request with hex id");
|
|
|
|
|
2019-10-31 23:17:31 +08:00
|
|
|
ok(run(app(["openssl", "req",
|
|
|
|
"-config", srctop_file("test", "test.cnf"),
|
2020-02-13 07:28:31 +08:00
|
|
|
"-verify", "-in", "testreq-sm2.pem", "-noout",
|
2020-03-11 06:10:29 +08:00
|
|
|
"-vfyopt", "hexdistid:DEADBEEF", "-sm3"])),
|
2019-07-30 23:05:44 +08:00
|
|
|
"Verifying signature on SM2 certificate request");
|
2019-06-05 14:46:48 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-30 08:05:33 +08:00
|
|
|
my @openssl_args = ("req", "-config", srctop_file("apps", "openssl.cnf"));
|
2015-04-18 02:15:22 +08:00
|
|
|
|
|
|
|
run_conversion('req conversions',
|
2019-10-31 23:17:31 +08:00
|
|
|
"testreq.pem");
|
2015-04-18 02:15:22 +08:00
|
|
|
run_conversion('req conversions -- testreq2',
|
2019-10-31 23:17:31 +08:00
|
|
|
srctop_file("test", "testreq2.pem"));
|
2016-06-04 07:05:06 +08:00
|
|
|
|
2015-04-18 02:15:22 +08:00
|
|
|
sub run_conversion {
|
|
|
|
my $title = shift;
|
|
|
|
my $reqfile = shift;
|
|
|
|
|
|
|
|
subtest $title => sub {
|
2019-10-31 23:17:31 +08:00
|
|
|
run(app(["openssl", @openssl_args,
|
|
|
|
"-in", $reqfile, "-inform", "p",
|
|
|
|
"-noout", "-text"],
|
|
|
|
stderr => "req-check.err", stdout => undef));
|
|
|
|
open DATA, "req-check.err";
|
|
|
|
SKIP: {
|
|
|
|
plan skip_all => "skipping req conversion test for $reqfile"
|
|
|
|
if grep /Unknown Public Key/, map { s/\R//; } <DATA>;
|
|
|
|
|
|
|
|
tconversion("req", $reqfile, @openssl_args);
|
|
|
|
}
|
|
|
|
close DATA;
|
|
|
|
unlink "req-check.err";
|
|
|
|
|
|
|
|
done_testing();
|
2015-04-18 02:15:22 +08:00
|
|
|
};
|
|
|
|
}
|