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

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

Issue 5535006: Add unittests for net::TestRootCerts and regenerate test certificates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix another hardcoded string Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « net/data/ssl/certificates/root_ca_cert.pem ('k') | net/data/ssl/scripts/generate-test-certs.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Defaults in the event they're not set in the environment
2 CA_DIR = out
3 KEY_SIZE = 2048
4 ALGO = sha1
5 CERT_TYPE = root
6 CA_NAME = req_env_dn
7
1 [ca] 8 [ca]
2 default_ca = CA_root 9 default_ca = CA_root
3 preserve = yes 10 preserve = yes
4 11
5 # The default test root, used to generate certificates and CRLs. 12 # The default test root, used to generate certificates and CRLs.
6 [CA_root] 13 [CA_root]
7 dir = $ENV::CA_DIR 14 dir = $ENV::CA_DIR
8 key_size = $ENV::KEY_SIZE 15 key_size = $ENV::KEY_SIZE
9 algo = $ENV::ALGO 16 algo = $ENV::ALGO
10 cert_type = $ENV::CERT_TYPE 17 cert_type = $ENV::CERT_TYPE
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 O = Test CA 84 O = Test CA
78 CN = Test Intermediate CA 85 CN = Test Intermediate CA
79 86
80 [req_env_dn] 87 [req_env_dn]
81 CN = $ENV::CA_COMMON_NAME 88 CN = $ENV::CA_COMMON_NAME
82 89
83 [req_ca_exts] 90 [req_ca_exts]
84 basicConstraints = critical, CA:true 91 basicConstraints = critical, CA:true
85 keyUsage = critical, keyCertSign, cRLSign 92 keyUsage = critical, keyCertSign, cRLSign
86 subjectKeyIdentifier = hash 93 subjectKeyIdentifier = hash
OLDNEW
« no previous file with comments | « net/data/ssl/certificates/root_ca_cert.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