Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 SUBJECT_NAME = req_dn | |
| 2 KEY_SIZE = 2048 | |
| 3 | |
| 4 [req] | |
| 5 default_bits = ${ENV::KEY_SIZE} | |
| 6 default_md = sha256 | |
| 7 string_mask = utf8only | |
| 8 prompt = no | |
| 9 encrypt_key = no | |
| 10 distinguished_name = ${ENV::SUBJECT_NAME} | |
| 11 req_extensions = req_extensions | |
| 12 | |
| 13 [req_dn] | |
| 14 C = US | |
| 15 ST = California | |
| 16 L = Mountain View | |
| 17 O = QUIC Server | |
| 18 CN = 127.0.0.1 | |
| 19 | |
| 20 [req_extensions] | |
| 21 subjectAltName = @spdy_pooling | |
|
Ryan Sleevi
2015/09/11 04:49:04
*cough* :P
Ryan Hamilton
2015/09/11 17:14:11
Done.
| |
| 22 | |
| 23 [spdy_pooling] | |
| 24 DNS.1 = www.example.org | |
| 25 DNS.2 = mail.example.org | |
| 26 DNS.3 = mail.example.com | |
| 27 | |
| OLD | NEW |