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

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

Issue 2560343002: Disable SHA-1 for Enterprise Certs (Closed)
Patch Set: Retweaked Created 4 years 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 # Defaults in the event they're not set in the environment 1 # Defaults in the event they're not set in the environment
2 CA_DIR = out 2 CA_DIR = out
3 KEY_SIZE = 2048 3 KEY_SIZE = 2048
4 ALGO = sha256 4 ALGO = sha256
5 CERT_TYPE = root 5 CERT_TYPE = root
6 CA_NAME = req_env_dn 6 CA_NAME = req_env_dn
7 CA_COMMON_NAME = Test Root CA
7 8
8 [ca] 9 [ca]
9 default_ca = CA_root 10 default_ca = CA_root
10 preserve = yes 11 preserve = yes
11 12
12 # The default test root, used to generate certificates and CRLs. 13 # The default test root, used to generate certificates and CRLs.
13 [CA_root] 14 [CA_root]
14 dir = $ENV::CA_DIR 15 dir = $ENV::CA_DIR
15 key_size = $ENV::KEY_SIZE 16 key_size = $ENV::KEY_SIZE
16 algo = $ENV::ALGO 17 algo = $ENV::ALGO
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 O = Test CA 111 O = Test CA
111 CN = Test Intermediate CA 112 CN = Test Intermediate CA
112 113
113 [req_env_dn] 114 [req_env_dn]
114 CN = $ENV::CA_COMMON_NAME 115 CN = $ENV::CA_COMMON_NAME
115 116
116 [req_ca_exts] 117 [req_ca_exts]
117 basicConstraints = critical, CA:true 118 basicConstraints = critical, CA:true
118 keyUsage = critical, keyCertSign, cRLSign 119 keyUsage = critical, keyCertSign, cRLSign
119 subjectKeyIdentifier = hash 120 subjectKeyIdentifier = hash
OLDNEW
« no previous file with comments | « net/data/ssl/certificates/x509_verify_results.chain.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