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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 IP.1 = 127.0.0.2 | 53 IP.1 = 127.0.0.2 |
54 IP.2 = FE80::1 | 54 IP.2 = FE80::1 |
55 DNS = test.example | 55 DNS = test.example |
56 email = test@test.example | 56 email = test@test.example |
57 otherName = 1.2.3.4;UTF8:ignore me | 57 otherName = 1.2.3.4;UTF8:ignore me |
58 dirName = more_san_sanity | 58 dirName = more_san_sanity |
59 | 59 |
60 [req_spdy_pooling] | 60 [req_spdy_pooling] |
61 subjectAltName = @spdy_pooling | 61 subjectAltName = @spdy_pooling |
62 | 62 |
| 63 [req_wildcard] |
| 64 subjectAltName = @wildcard |
| 65 |
63 [more_san_sanity] | 66 [more_san_sanity] |
64 CN=127.0.0.3 | 67 CN=127.0.0.3 |
65 | 68 |
66 [spdy_pooling] | 69 [spdy_pooling] |
67 DNS.1 = www.example.org | 70 DNS.1 = www.example.org |
68 DNS.2 = mail.example.org | 71 DNS.2 = mail.example.org |
69 DNS.3 = mail.example.com | 72 DNS.3 = mail.example.com |
70 | 73 |
71 [punycode_san] | 74 [punycode_san] |
72 DNS.1 = xn--wgv71a119e.com | 75 DNS.1 = xn--wgv71a119e.com |
73 DNS.2 = *.xn--wgv71a119e.com | 76 DNS.2 = *.xn--wgv71a119e.com |
74 DNS.3 = blahblahblahblah.com | 77 DNS.3 = blahblahblahblah.com |
| 78 |
| 79 [wildcard] |
| 80 DNS.1 = *.example.org |
OLD | NEW |