[openssl] openssl-3.0 update
bernd.edlinger at hotmail.de
bernd.edlinger at hotmail.de
Sat Jan 8 12:03:39 UTC 2022
The branch openssl-3.0 has been updated
via 79fc479baf848e91a991a215d775d8aae844fbe5 (commit)
from e33f05660447c69e89f2e9f5d3140a56322411d5 (commit)
- Log -----------------------------------------------------------------
commit 79fc479baf848e91a991a215d775d8aae844fbe5
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date: Fri Jan 7 12:44:27 2022 +0100
Add a test case for the short password
Reviewed-by: Paul Dale <pauli at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17441)
(cherry picked from commit 21095479c016f2ceaca0f71078fd27f0e9ba9375)
-----------------------------------------------------------------------
Summary of changes:
test/recipes/15-test_genrsa.t | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/test/recipes/15-test_genrsa.t b/test/recipes/15-test_genrsa.t
index e11ce8947a..1bba712863 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");
More information about the openssl-commits
mailing list