comparison ssl_verify_depth.t @ 1945:0b5ec15c62ed

Tests: compatibility with "openssl" app from OpenSSL 3.2.0. OpenSSL 3.2.0's "openssl" app generates X.509v3 certificates unless explicitly asked not to. Such certificates, even self-signed ones, cannot be used to sign other certificates without CA:TRUE explicitly set in the basicConstraints extension. As a result, tests doing so are now failing. Fix is to provide basicConstraints with CA:TRUE for self-signed root certificates used in "openssl ca" calls.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 29 Jan 2024 00:34:16 +0300
parents a797d7428fa5
children
comparison
equal deleted inserted replaced
1944:c287864444f8 1945:0b5ec15c62ed
74 $t->write_file('openssl.conf', <<EOF); 74 $t->write_file('openssl.conf', <<EOF);
75 [ req ] 75 [ req ]
76 default_bits = 2048 76 default_bits = 2048
77 encrypt_key = no 77 encrypt_key = no
78 distinguished_name = req_distinguished_name 78 distinguished_name = req_distinguished_name
79 x509_extensions = myca_extensions
79 [ req_distinguished_name ] 80 [ req_distinguished_name ]
81 [ myca_extensions ]
82 basicConstraints = critical,CA:TRUE
80 EOF 83 EOF
81 84
82 $t->write_file('ca.conf', <<EOF); 85 $t->write_file('ca.conf', <<EOF);
83 [ ca ] 86 [ ca ]
84 default_ca = myca 87 default_ca = myca