mirror of
https://github.com/openssl/openssl.git
synced 2024-12-21 06:09:35 +08:00
81722fdf2e
Add testing for the `req` app and explicit conversion tests similar to what is done for ECDSA keys. The included test keys for Ed25519 are from the examples in RFC 8410 (Sec. 10) The key for Ed448 is derived from the first of the test vectors in RFC 8032 (Sec. 7.4) using OpenSSL to encode it into PEM format. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10410)
67 lines
2.1 KiB
Perl
67 lines
2.1 KiB
Perl
#! /usr/bin/env perl
|
|
# Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
# 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
|
|
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use File::Spec;
|
|
use OpenSSL::Test qw/:DEFAULT srctop_file/;
|
|
use OpenSSL::Test::Utils;
|
|
|
|
setup("test_ec");
|
|
|
|
plan tests => 11;
|
|
|
|
require_ok(srctop_file('test','recipes','tconversion.pl'));
|
|
|
|
ok(run(test(["ectest"])), "running ectest");
|
|
|
|
SKIP: {
|
|
skip "Skipping EC conversion test", 3
|
|
if disabled("ec");
|
|
|
|
subtest 'EC conversions -- private key' => sub {
|
|
tconversion("ec", srctop_file("test","testec-p256.pem"));
|
|
};
|
|
subtest 'EC conversions -- private key PKCS#8' => sub {
|
|
tconversion("ec", srctop_file("test","testec-p256.pem"), "pkey");
|
|
};
|
|
subtest 'EC conversions -- public key' => sub {
|
|
tconversion("ec", srctop_file("test","testecpub-p256.pem"),
|
|
"ec", "-pubin", "-pubout");
|
|
};
|
|
}
|
|
|
|
SKIP: {
|
|
skip "Skipping EdDSA conversion test", 6
|
|
if disabled("ec");
|
|
|
|
subtest 'Ed25519 conversions -- private key' => sub {
|
|
tconversion("pkey", srctop_file("test","tested25519.pem"));
|
|
};
|
|
subtest 'Ed25519 conversions -- private key PKCS#8' => sub {
|
|
tconversion("pkey", srctop_file("test","tested25519.pem"), "pkey");
|
|
};
|
|
subtest 'Ed25519 conversions -- public key' => sub {
|
|
tconversion("pkey", srctop_file("test","tested25519pub.pem"),
|
|
"pkey", "-pubin", "-pubout");
|
|
};
|
|
|
|
subtest 'Ed448 conversions -- private key' => sub {
|
|
tconversion("pkey", srctop_file("test","tested448.pem"));
|
|
};
|
|
subtest 'Ed448 conversions -- private key PKCS#8' => sub {
|
|
tconversion("pkey", srctop_file("test","tested448.pem"), "pkey");
|
|
};
|
|
subtest 'Ed448 conversions -- public key' => sub {
|
|
tconversion("pkey", srctop_file("test","tested448pub.pem"),
|
|
"pkey", "-pubin", "-pubout");
|
|
};
|
|
}
|