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} |
11 req_extensions = req_extensions | 11 req_extensions = req_extensions |
12 | 12 |
13 [req_dn] | 13 [req_dn] |
14 C = US | 14 C = US |
15 ST = California | 15 ST = California |
16 L = Mountain View | 16 L = Mountain View |
17 O = Test CA | 17 O = Test CA |
18 CN = 127.0.0.1 | 18 CN = 127.0.0.1 |
19 | 19 |
20 [req_duplicate_cn_1] | 20 [req_duplicate_cn_1] |
21 O = Foo | 21 O = Foo |
22 CN = Duplicate | 22 CN = Duplicate |
23 | 23 |
24 [req_duplicate_cn_2] | 24 [req_duplicate_cn_2] |
25 O = Bar | 25 O = Bar |
26 CN = Duplicate | 26 CN = Duplicate |
27 | 27 |
28 [req_localhost_cn] | |
29 C = US | |
30 ST = California | |
31 L = Mountain View | |
32 O = Test CA | |
33 CN = localhost | |
34 | |
28 [req_punycode_dn] | 35 [req_punycode_dn] |
29 CN = xn--wgv71a119e.com | 36 CN = xn--wgv71a119e.com |
30 | 37 |
31 [req_extensions] | 38 [req_extensions] |
32 subjectAltName = IP:127.0.0.1 | 39 subjectAltName = IP:127.0.0.1 |
33 | 40 |
41 [req_extensions_none] | |
Ryan Sleevi
2015/04/04 00:35:24
Nah, we need a san of localhost.
Recall that I'm
estark
2015/04/06 16:41:13
Done.
| |
42 | |
34 [req_punycode] | 43 [req_punycode] |
35 basicConstraints = critical, CA:true | 44 basicConstraints = critical, CA:true |
36 subjectAltName = @punycode_san | 45 subjectAltName = @punycode_san |
37 | 46 |
38 [req_san_sanity] | 47 [req_san_sanity] |
39 basicConstraints = critical, CA:true | 48 basicConstraints = critical, CA:true |
40 subjectAltName = @san_sanity | 49 subjectAltName = @san_sanity |
41 | 50 |
42 [san_sanity] | 51 [san_sanity] |
43 IP.1 = 127.0.0.2 | 52 IP.1 = 127.0.0.2 |
(...skipping 11 matching lines...) Expand all Loading... | |
55 | 64 |
56 [spdy_pooling] | 65 [spdy_pooling] |
57 DNS.1 = www.example.org | 66 DNS.1 = www.example.org |
58 DNS.2 = mail.example.org | 67 DNS.2 = mail.example.org |
59 DNS.3 = mail.example.com | 68 DNS.3 = mail.example.com |
60 | 69 |
61 [punycode_san] | 70 [punycode_san] |
62 DNS.1 = xn--wgv71a119e.com | 71 DNS.1 = xn--wgv71a119e.com |
63 DNS.2 = *.xn--wgv71a119e.com | 72 DNS.2 = *.xn--wgv71a119e.com |
64 DNS.3 = blahblahblahblah.com | 73 DNS.3 = blahblahblahblah.com |
OLD | NEW |