| 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 = QUIC Server | 17 O = QUIC Server |
| 18 CN = 127.0.0.1 | 18 CN = 127.0.0.1 |
| 19 | 19 |
| 20 [req_extensions] | 20 [req_extensions] |
| 21 subjectAltName = @other_hosts | 21 subjectAltName = @other_hosts |
| 22 | 22 |
| 23 [other_hosts] | 23 [other_hosts] |
| 24 DNS.1 = www.example.org | 24 DNS.1 = www.example.org |
| 25 DNS.2 = mail.example.org | 25 DNS.2 = mail.example.org |
| 26 DNS.3 = mail.example.com | 26 DNS.3 = mail.example.com |
| 27 IP.1 = 127.0.0.1 |
| 27 | 28 |
| OLD | NEW |