OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
Robert Sesek
2015/10/08 19:20:06
Does this file need to be duplicated? (Same with o
Greg K
2015/10/09 17:12:01
Nope, an empty file there will work just as well.
| |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 [ ca ] | 5 [ ca ] |
6 default_ca = CA_default | 6 default_ca = CA_default |
7 | 7 |
8 [ CA_default ] | 8 [ CA_default ] |
9 default_md = sha256 | 9 default_md = sha256 |
10 copy_extensions = copy | 10 copy_extensions = copy |
11 x509_extensions = req_attrs | 11 x509_extensions = req_attrs |
12 | 12 |
13 [ req ] | 13 [ req ] |
14 distinguished_name = req_distinguished_name | 14 distinguished_name = req_distinguished_name |
15 prompt = no | 15 prompt = no |
16 req_extensions = req_attrs | 16 req_extensions = req_attrs |
17 default_md = sha256 | 17 default_md = sha256 |
18 | 18 |
19 [ req_distinguished_name ] | 19 [ req_distinguished_name ] |
20 countryName = US | 20 countryName = US |
21 commonName = untrusted@goat.local | 21 commonName = untrusted@goat.local |
22 localityName = New York | 22 localityName = New York |
23 stateOrProvinceName = New York | 23 stateOrProvinceName = New York |
24 organizationName = Untrusted Goat | 24 organizationName = Untrusted Goat |
25 | 25 |
26 [ req_attrs ] | 26 [ req_attrs ] |
27 extendedKeyUsage = codeSigning | 27 extendedKeyUsage = codeSigning |
28 keyUsage = digitalSignature | 28 keyUsage = digitalSignature |
OLD | NEW |