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 14 matching lines...) Expand all Loading... |
25 O = Bar | 25 O = Bar |
26 CN = Duplicate | 26 CN = Duplicate |
27 | 27 |
28 [req_localhost_cn] | 28 [req_localhost_cn] |
29 C = US | 29 C = US |
30 ST = California | 30 ST = California |
31 L = Mountain View | 31 L = Mountain View |
32 O = Test CA | 32 O = Test CA |
33 CN = localhost | 33 CN = localhost |
34 | 34 |
| 35 [req_example_cn] |
| 36 C = US |
| 37 ST = California |
| 38 L = Mountain View |
| 39 O = Test CA |
| 40 CN = example.com |
| 41 |
| 42 [req_www_example_cn] |
| 43 C = US |
| 44 ST = California |
| 45 L = Mountain View |
| 46 O = Test CA |
| 47 CN = www.example.com |
| 48 |
35 [req_punycode_dn] | 49 [req_punycode_dn] |
36 CN = xn--wgv71a119e.com | 50 CN = xn--wgv71a119e.com |
37 | 51 |
38 [req_extensions] | 52 [req_extensions] |
39 subjectAltName = IP:127.0.0.1 | 53 subjectAltName = IP:127.0.0.1 |
40 | 54 |
41 [req_localhost_san] | 55 [req_localhost_san] |
42 subjectAltName = DNS:localhost | 56 subjectAltName = DNS:localhost |
43 | 57 |
| 58 [req_example_san] |
| 59 subjectAltName = DNS:example.com |
| 60 |
| 61 [req_www_example_san] |
| 62 subjectAltName = DNS:www.example.com |
| 63 |
44 [req_punycode] | 64 [req_punycode] |
45 basicConstraints = critical, CA:true | 65 basicConstraints = critical, CA:true |
46 subjectAltName = @punycode_san | 66 subjectAltName = @punycode_san |
47 | 67 |
48 [req_san_sanity] | 68 [req_san_sanity] |
49 basicConstraints = critical, CA:true | 69 basicConstraints = critical, CA:true |
50 subjectAltName = @san_sanity | 70 subjectAltName = @san_sanity |
51 | 71 |
52 [san_sanity] | 72 [san_sanity] |
53 IP.1 = 127.0.0.2 | 73 IP.1 = 127.0.0.2 |
(...skipping 11 matching lines...) Expand all Loading... |
65 | 85 |
66 [spdy_pooling] | 86 [spdy_pooling] |
67 DNS.1 = www.example.org | 87 DNS.1 = www.example.org |
68 DNS.2 = mail.example.org | 88 DNS.2 = mail.example.org |
69 DNS.3 = mail.example.com | 89 DNS.3 = mail.example.com |
70 | 90 |
71 [punycode_san] | 91 [punycode_san] |
72 DNS.1 = xn--wgv71a119e.com | 92 DNS.1 = xn--wgv71a119e.com |
73 DNS.2 = *.xn--wgv71a119e.com | 93 DNS.2 = *.xn--wgv71a119e.com |
74 DNS.3 = blahblahblahblah.com | 94 DNS.3 = blahblahblahblah.com |
OLD | NEW |