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

Side by Side Diff: net/data/ssl/scripts/ee.cnf

Issue 2725683002: Move name matching into the shared certificate validator (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
OLDNEW
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 = Test CA 17 O = Test CA
18 CN = 127.0.0.1 18 CN = 127.0.0.1
19 19
20 [req_duplicate_cn_1] 20 [req_duplicate_cn_1]
21 O = Foo 21 O = Foo
22 CN = Duplicate 22 CN = Duplicate
23 23
24 [req_duplicate_cn_2] 24 [req_duplicate_cn_2]
25 O = Bar 25 O = Bar
26 CN = Duplicate 26 CN = Duplicate
27 27
28 [req_intranet_dn]
29 CN = webmail
30
28 [req_localhost_cn] 31 [req_localhost_cn]
29 C = US 32 C = US
30 ST = California 33 ST = California
31 L = Mountain View 34 L = Mountain View
32 O = Test CA 35 O = Test CA
33 CN = localhost 36 CN = localhost
34 37
35 [req_self_signed_a] 38 [req_self_signed_a]
36 C = US 39 C = US
37 ST = Michigan 40 ST = Michigan
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 DNS.2 = mail.example.org 92 DNS.2 = mail.example.org
90 DNS.3 = mail.example.com 93 DNS.3 = mail.example.com
91 94
92 [punycode_san] 95 [punycode_san]
93 DNS.1 = xn--wgv71a119e.com 96 DNS.1 = xn--wgv71a119e.com
94 DNS.2 = *.xn--wgv71a119e.com 97 DNS.2 = *.xn--wgv71a119e.com
95 DNS.3 = blahblahblahblah.com 98 DNS.3 = blahblahblahblah.com
96 99
97 [wildcard] 100 [wildcard]
98 DNS.1 = *.example.org 101 DNS.1 = *.example.org
OLDNEW
« no previous file with comments | « net/data/ssl/certificates/reject_intranet_hosts.pem ('k') | net/data/ssl/scripts/generate-test-certs.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698