| OLD | NEW |
| 1 [req] | 1 [req] |
| 2 default_bits = $ENV::KEY_SIZE | 2 default_bits = $ENV::KEY_SIZE |
| 3 default_md = sha1 | 3 default_md = sha1 |
| 4 string_mask = utf8only | 4 string_mask = utf8only |
| 5 prompt = no | 5 prompt = no |
| 6 encrypt_key = no | 6 encrypt_key = no |
| 7 distinguished_name = req_dn | 7 distinguished_name = req_dn |
| 8 req_extensions = req_extensions | 8 req_extensions = req_extensions |
| 9 | 9 |
| 10 [req_dn] | 10 [req_dn] |
| 11 C = US | 11 C = US |
| 12 ST = California | 12 ST = California |
| 13 L = Mountain View | 13 L = Mountain View |
| 14 O = Test CA | 14 O = Test CA |
| 15 CN = 127.0.0.1 | 15 CN = 127.0.0.1 |
| 16 | 16 |
| 17 [req_extensions] | 17 [req_extensions] |
| 18 subjectAltName = IP:127.0.0.1 | 18 subjectAltName = IP:127.0.0.1 |
| 19 |
| 20 [req_san_sanity] |
| 21 subjectAltName = @san_sanity |
| 22 |
| 23 [san_sanity] |
| 24 IP.1 = 127.0.0.2 |
| 25 IP.2 = FE80::1 |
| 26 DNS = test.example |
| 27 email = test@test.example |
| 28 otherName = 1.2.3.4;UTF8:ignore me |
| 29 dirName = more_san_sanity |
| 30 |
| 31 [more_san_sanity] |
| 32 CN=127.0.0.3 |
| OLD | NEW |