comparison stream_ssl.t @ 1974:b5036a0f9ae0

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 dbb7561a9441
children
comparison
equal deleted inserted replaced
1973:94e0390dc64f 1974:b5036a0f9ae0
88 distinguished_name = req_distinguished_name 88 distinguished_name = req_distinguished_name
89 [ req_distinguished_name ] 89 [ req_distinguished_name ]
90 EOF 90 EOF
91 91
92 my $d = $t->testdir(); 92 my $d = $t->testdir();
93 my $tr = `openssl genrsa -help 2>&1` =~ /-traditional/ ? '-traditional' : '';
94
93 mkfifo("$d/password_fifo", 0700); 95 mkfifo("$d/password_fifo", 0700);
94 96
95 foreach my $name ('localhost', 'inherits') { 97 foreach my $name ('localhost', 'inherits') {
96 system("openssl genrsa -out $d/$name.key -passout pass:$name " 98 system("openssl genrsa -out $d/$name.key -passout pass:$name "
97 . "-aes128 2048 >>$d/openssl.out 2>&1") == 0 99 . "-aes128 $tr 2048 >>$d/openssl.out 2>&1") == 0
98 or die "Can't create private key: $!\n"; 100 or die "Can't create private key: $!\n";
99 system('openssl req -x509 -new ' 101 system('openssl req -x509 -new '
100 . "-config $d/openssl.conf -subj /CN=$name/ " 102 . "-config $d/openssl.conf -subj /CN=$name/ "
101 . "-out $d/$name.crt " 103 . "-out $d/$name.crt "
102 . "-key $d/$name.key -passin pass:$name" 104 . "-key $d/$name.key -passin pass:$name"