comparison ssl_password_file.t @ 1974:b5036a0f9ae0 default tip

Tests: improved compatibility when using recent "openssl" app. Starting with OpenSSL 3.0, "openssl genrsa" generates encrypted keys in PKCS#8 format instead of previously used PKCS#1 format. Further, since OpenSSL 1.1.0 such keys are using PBKDF2 hmacWithSHA256. Such keys are not supported by old SSL libraries, notably by OpenSSL before 1.0.0 (OpenSSL 0.9.8 only supports hmacWithSHA1) and by BoringSSL before May 21, 2019 (support for hmacWithSHA256 was added in 302a4dee6c), and trying to load such keys into nginx compiled with an old SSL library results in "unsupported prf" errors. To facilitate testing with old SSL libraries, keys are now generated with "openssl genrsa -traditional" if the flag is available.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 06 May 2024 00:04:26 +0300
parents a797d7428fa5
children
comparison
equal deleted inserted replaced
1973:94e0390dc64f 1974:b5036a0f9ae0
92 distinguished_name = req_distinguished_name 92 distinguished_name = req_distinguished_name
93 [ req_distinguished_name ] 93 [ req_distinguished_name ]
94 EOF 94 EOF
95 95
96 my $d = $t->testdir(); 96 my $d = $t->testdir();
97 my $tr = `openssl genrsa -help 2>&1` =~ /-traditional/ ? '-traditional' : '';
98
97 mkfifo("$d/password_fifo", 0700); 99 mkfifo("$d/password_fifo", 0700);
98 100
99 foreach my $name ('localhost', 'inherits') { 101 foreach my $name ('localhost', 'inherits') {
100 system("openssl genrsa -out $d/$name.key -passout pass:$name " 102 system("openssl genrsa -out $d/$name.key -passout pass:$name "
101 . "-aes128 2048 >>$d/openssl.out 2>&1") == 0 103 . "-aes128 $tr 2048 >>$d/openssl.out 2>&1") == 0
102 or die "Can't create private key: $!\n"; 104 or die "Can't create private key: $!\n";
103 system('openssl req -x509 -new ' 105 system('openssl req -x509 -new '
104 . "-config $d/openssl.conf -subj /CN=$name/ " 106 . "-config $d/openssl.conf -subj /CN=$name/ "
105 . "-out $d/$name.crt " 107 . "-out $d/$name.crt "
106 . "-key $d/$name.key -passin pass:$name" 108 . "-key $d/$name.key -passin pass:$name"