Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 71 CN = Test Root CA | 78 CN = Test Root CA |
| 72 | 79 |
| 73 [req_intermediate_dn] | 80 [req_intermediate_dn] |
| 74 C = US | 81 C = US |
| 75 ST = California | 82 ST = California |
| 76 L = Mountain View | 83 L = Mountain View |
| 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 |
|
wtc
2013/06/18 22:51:45
Does CA_COMMON_NAME need a default?
Ryan Sleevi
2013/06/18 23:57:59
Intentionally omitted, just to make sure that the
| |
| 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 |
| OLD | NEW |