From: Bernd Edlinger Date: Fri, 7 Jan 2022 11:44:27 +0000 (+0100) Subject: Add a test case for the short password X-Git-Tag: openssl-3.2.0-alpha1~3114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21095479c016f2ceaca0f71078fd27f0e9ba9375;p=thirdparty%2Fopenssl.git Add a test case for the short password Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/17441) --- diff --git a/test/recipes/15-test_genrsa.t b/test/recipes/15-test_genrsa.t index e11ce8947a9..1bba7128636 100644 --- a/test/recipes/15-test_genrsa.t +++ b/test/recipes/15-test_genrsa.t @@ -25,7 +25,7 @@ my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0); plan tests => ($no_fips ? 0 : 3) # Extra FIPS related tests - + 13; + + 15; # We want to know that an absurdly small number of bits isn't support is(run(app([ 'openssl', 'genpkey', '-out', 'genrsatest.pem', @@ -103,6 +103,11 @@ ok(run(app([ 'openssl', 'genrsa', '-f4', '-out', 'genrsatest.pem', $good ])), "genrsa -f4 $good"); ok(run(app([ 'openssl', 'rsa', '-check', '-in', 'genrsatest.pem', '-noout' ])), "rsa -check"); +ok(run(app([ 'openssl', 'rsa', '-in', 'genrsatest.pem', '-out', 'genrsatest-enc.pem', + '-aes256', '-passout', 'pass:x' ])), + "rsa encrypt"); +ok(run(app([ 'openssl', 'rsa', '-in', 'genrsatest-enc.pem', '-passin', 'pass:x' ])), + "rsa decrypt"); unless ($no_fips) { my $provconf = srctop_file("test", "fips-and-base.cnf");