| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 subjectAltName = @san_sanity | 50 subjectAltName = @san_sanity |
| 51 | 51 |
| 52 [san_sanity] | 52 [san_sanity] |
| 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] |
| 61 subjectAltName = @spdy |
| 62 |
| 60 [req_spdy_pooling] | 63 [req_spdy_pooling] |
| 61 subjectAltName = @spdy_pooling | 64 subjectAltName = @spdy_pooling |
| 62 | 65 |
| 63 [more_san_sanity] | 66 [more_san_sanity] |
| 64 CN=127.0.0.3 | 67 CN=127.0.0.3 |
| 65 | 68 |
| 69 [spdy] |
| 70 DNS.1 = www.google.com |
| 71 |
| 66 [spdy_pooling] | 72 [spdy_pooling] |
| 67 DNS.1 = www.example.org | 73 DNS.1 = www.example.org |
| 68 DNS.2 = mail.example.org | 74 DNS.2 = mail.example.org |
| 69 DNS.3 = mail.example.com | 75 DNS.3 = mail.example.com |
| 70 | 76 |
| 71 [punycode_san] | 77 [punycode_san] |
| 72 DNS.1 = xn--wgv71a119e.com | 78 DNS.1 = xn--wgv71a119e.com |
| 73 DNS.2 = *.xn--wgv71a119e.com | 79 DNS.2 = *.xn--wgv71a119e.com |
| 74 DNS.3 = blahblahblahblah.com | 80 DNS.3 = blahblahblahblah.com |
| OLD | NEW |