mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
aff636a489
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15181)
70 lines
2.5 KiB
Perl
70 lines
2.5 KiB
Perl
#! /usr/bin/env perl
|
|
# Copyright 2017-2021 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_gendh");
|
|
|
|
plan skip_all => "This test is unsupported in a no-dh build" if disabled("dh");
|
|
|
|
plan tests => 9;
|
|
|
|
ok(run(app([ 'openssl', 'genpkey', '-algorithm', 'DH',
|
|
'-pkeyopt', 'type:group',
|
|
'-text'])),
|
|
"genpkey DH default group");
|
|
|
|
ok(run(app([ 'openssl', 'genpkey', '-algorithm', 'DH',
|
|
'-pkeyopt', 'type:group',
|
|
'-pkeyopt', 'group:ffdhe2048',
|
|
'-text'])),
|
|
"genpkey DH group ffdhe2048");
|
|
|
|
ok(run(app([ 'openssl', 'genpkey', '-genparam',
|
|
'-algorithm', 'DHX',
|
|
'-pkeyopt', 'gindex:1',
|
|
'-pkeyopt', 'type:fips186_4',
|
|
'-out', 'dhgen.pem' ])),
|
|
"genpkey DH params fips186_4 PEM");
|
|
|
|
# The seed and counter should be the ones generated from the param generation
|
|
# Just put some dummy ones in to show it works.
|
|
ok(run(app([ 'openssl', 'genpkey',
|
|
'-paramfile', 'dhgen.pem',
|
|
'-pkeyopt', 'gindex:1',
|
|
'-pkeyopt', 'hexseed:ed2927f2139eb61495d6641efda1243f93ebe482b5bfc2c755a53825',
|
|
'-pkeyopt', 'pcounter:25',
|
|
'-text' ])),
|
|
"genpkey DH fips186_4 with PEM params");
|
|
|
|
ok(!run(app([ 'openssl', 'genpkey',
|
|
'-algorithm', 'DH'])),
|
|
"genpkey DH with no params should fail");
|
|
|
|
ok(!run(app([ 'openssl', 'genpkey', '-algorithm', 'DH', '-pkeyopt',
|
|
'group:ffdhe3072', '-pkeyopt', 'priv_len:255', '-text'])),
|
|
'genpkey DH with a small private len should fail');
|
|
|
|
ok(!run(app([ 'openssl', 'genpkey', '-algorithm', 'DH', '-pkeyopt',
|
|
'group:ffdhe3072', '-pkeyopt', 'priv_len:3072', '-text'])),
|
|
'genpkey DH with a large private len should fail');
|
|
|
|
ok(run(app([ 'openssl', 'genpkey', '-algorithm', 'DH', '-pkeyopt',
|
|
'group:ffdhe3072', '-pkeyopt', 'priv_len:256', '-text'])),
|
|
'genpkey DH with a minimum strength private len');
|
|
|
|
ok(run(app([ 'openssl', 'genpkey', '-algorithm', 'DH', '-pkeyopt',
|
|
'group:ffdhe2048', '-pkeyopt', 'priv_len:224', '-text'])),
|
|
'genpkey 2048 DH with a minimum strength private len');
|