OLD | NEW |
1 SUBJECT_NAME = req_dn | 1 SUBJECT_NAME = req_dn |
2 KEY_SIZE = 2048 | 2 KEY_SIZE = 2048 |
3 | 3 |
4 [req] | 4 [req] |
5 default_bits = ${ENV::KEY_SIZE} | 5 default_bits = ${ENV::KEY_SIZE} |
6 default_md = sha256 | 6 default_md = sha256 |
7 string_mask = utf8only | 7 string_mask = utf8only |
8 prompt = no | 8 prompt = no |
9 encrypt_key = no | 9 encrypt_key = no |
10 distinguished_name = ${ENV::SUBJECT_NAME} | 10 distinguished_name = ${ENV::SUBJECT_NAME} |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 L = Ann Arbor | 45 L = Ann Arbor |
46 O = Test Self-Signed | 46 O = Test Self-Signed |
47 CN = SS B | 47 CN = SS B |
48 | 48 |
49 [req_punycode_dn] | 49 [req_punycode_dn] |
50 CN = xn--wgv71a119e.com | 50 CN = xn--wgv71a119e.com |
51 | 51 |
52 [req_extensions] | 52 [req_extensions] |
53 subjectAltName = IP:127.0.0.1 | 53 subjectAltName = IP:127.0.0.1 |
54 | 54 |
| 55 [req_extensions_with_tls_feature] |
| 56 subjectAltName = IP:127.0.0.1 |
| 57 1.3.6.1.5.5.7.1.24=DER:30:03:02:01:05 |
| 58 |
55 [req_localhost_san] | 59 [req_localhost_san] |
56 subjectAltName = DNS:localhost | 60 subjectAltName = DNS:localhost |
57 | 61 |
58 [req_punycode] | 62 [req_punycode] |
59 basicConstraints = critical, CA:true | 63 basicConstraints = critical, CA:true |
60 subjectAltName = @punycode_san | 64 subjectAltName = @punycode_san |
61 | 65 |
62 [req_san_sanity] | 66 [req_san_sanity] |
63 basicConstraints = critical, CA:true | 67 basicConstraints = critical, CA:true |
64 subjectAltName = @san_sanity | 68 subjectAltName = @san_sanity |
(...skipping 20 matching lines...) Expand all Loading... |
85 DNS.2 = mail.example.org | 89 DNS.2 = mail.example.org |
86 DNS.3 = mail.example.com | 90 DNS.3 = mail.example.com |
87 | 91 |
88 [punycode_san] | 92 [punycode_san] |
89 DNS.1 = xn--wgv71a119e.com | 93 DNS.1 = xn--wgv71a119e.com |
90 DNS.2 = *.xn--wgv71a119e.com | 94 DNS.2 = *.xn--wgv71a119e.com |
91 DNS.3 = blahblahblahblah.com | 95 DNS.3 = blahblahblahblah.com |
92 | 96 |
93 [wildcard] | 97 [wildcard] |
94 DNS.1 = *.example.org | 98 DNS.1 = *.example.org |
OLD | NEW |