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

Side by Side Diff: net/tools/quic/certs/leaf.cnf

Issue 1330223003: Add scripts for generating certs to be used with the quic_server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix comments Created 5 years, 3 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
« no previous file with comments | « net/tools/quic/certs/generate-certs.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 = @other_hosts
22
23 [other_hosts]
24 DNS.1 = www.example.org
25 DNS.2 = mail.example.org
26 DNS.3 = mail.example.com
27
OLDNEW
« no previous file with comments | « net/tools/quic/certs/generate-certs.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698