Use x509 v1 certs for test use in openssl 3.3

Switch back to alpine 3.20
This commit is contained in:
Olof hagsand 2024-05-28 17:08:08 +02:00
parent a194c049c7
commit c377a28d56
2 changed files with 6 additions and 3 deletions

View file

@ -1268,7 +1268,8 @@ challengePassword = test
EOF
# Generate CA cert
openssl req -batch -new -x509 -days 1 -config $tmpdir/ca.cnf -keyout $cakey -out $cacert || err "Generate CA cert"
# XXX v3 requires usage
openssl req -batch -new -x509v1 -days 1 -config $tmpdir/ca.cnf -keyout $cakey -out $cacert || err "Generate CA cert"
rm -rf $tmpdir
}