Re: [PATCH] Apache-Test/lib/Apache/TestSSLCA.pm to always generate PKCS#1 keys with opensssl >= 3

2023-10-18 Thread Yann Ylavic
On Wed, Oct 18, 2023 at 3:09 PM Yann Ylavic wrote: > > This is not an issue as long as httpd and TestSSLCA.pm use the same > openssl version (either < 3 or >= 3), but if e.g. httpd is > compiled/linked/-rpath'ed against an openssl < 3 and TestSSLCA.pm uses > the system's openssl >= 3 then mod_prox

[PATCH] Apache-Test/lib/Apache/TestSSLCA.pm to always generate PKCS#1 keys with opensssl >= 3

2023-10-18 Thread Yann Ylavic
Before openssl 3.0 the command `openssl genrsa` used to generate private keys in PKCS#1 format, since openssl >= 3.0 it now generates them in PKCS#8 format by default (while passing -traditional at the command line allows to restore the old behaviour). This is not an issue as long as httpd and Tes