Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1679)

Unified Diff: net/data/ssl/scripts/ee.cnf

Issue 1223233002: Common Name Mismatch Handler For WWW Subdomain Mismatch case (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resolved comments: documentation, style changes Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/data/ssl/scripts/ee.cnf
diff --git a/net/data/ssl/scripts/ee.cnf b/net/data/ssl/scripts/ee.cnf
index 0151613049ff920bf3f1a6f6ea9d38b76680793f..07531b5c87e9656cf3c17d3469a71c4c22170827 100644
--- a/net/data/ssl/scripts/ee.cnf
+++ b/net/data/ssl/scripts/ee.cnf
@@ -32,6 +32,20 @@ L = Mountain View
O = Test CA
CN = localhost
+[req_example_cn]
+C = US
+ST = California
+L = Mountain View
+O = Test CA
+CN = example.com
+
+[req_www_example_cn]
+C = US
+ST = California
+L = Mountain View
+O = Test CA
+CN = www.example.com
+
[req_punycode_dn]
CN = xn--wgv71a119e.com
@@ -41,6 +55,12 @@ subjectAltName = IP:127.0.0.1
[req_localhost_san]
subjectAltName = DNS:localhost
+[req_example_san]
+subjectAltName = DNS:example.com
+
+[req_www_example_san]
+subjectAltName = DNS:www.example.com
+
[req_punycode]
basicConstraints = critical, CA:true
subjectAltName = @punycode_san

Powered by Google App Engine
This is Rietveld 408576698