Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # The default configuration to use when requesting a certificate to be used | |
| 2 # as the server test certificate, whether OK or expired. | |
| 3 [req] | |
| 4 # Common configuration for all requests | |
| 5 default_bits = 1024 | |
| 6 default_md = sha1 | |
| 7 string_mask = utf8only | |
| 8 prompt = no | |
| 9 encrypt_key = no | |
| 10 distinguished_name = req_dn | |
| 11 req_extensions = req_extensions | |
| 12 | |
| 13 [req_dn] | |
| 14 C = US | |
| 15 ST = California | |
| 16 L = Mountain View | |
| 17 O = Test CA | |
| 18 # TODO(wtc): Deprecate de facto, but not de jure, matching of iPAddress in | |
|
wtc
2010/12/08 19:58:22
Are you sure? I think we can put
CN = Test Serv
Ryan Sleevi
2010/12/09 05:49:55
I've updated the comment to reflect the two open b
| |
| 19 # the commonName field | |
| 20 CN = 127.0.0.1 | |
| 21 | |
| 22 [req_extensions] | |
| 23 subjectAltName = IP:127.0.0.1 | |
| OLD | NEW |