Index: net/data/ssl/scripts/ee.cnf |
=================================================================== |
--- net/data/ssl/scripts/ee.cnf (revision 0) |
+++ net/data/ssl/scripts/ee.cnf (revision 0) |
@@ -0,0 +1,20 @@ |
+[req] |
+default_bits = $ENV::KEY_SIZE |
+default_md = sha1 |
+string_mask = utf8only |
+prompt = no |
+encrypt_key = no |
+distinguished_name = req_dn |
+req_extensions = req_extensions |
+ |
+[req_dn] |
+C = US |
+ST = California |
+L = Mountain View |
+O = Test CA |
+# TODO(joth): Support matching the iPAddress subjectAltName when using |
+# OpenSSL. See http://crbug.com/62973 and http://crbug.com/20276 |
Ryan Sleevi
2011/12/13 23:54:16
Heh, this has long been added. I think this was a
|
+CN = 127.0.0.1 |
+ |
+[req_extensions] |
+subjectAltName = IP:127.0.0.1 |