OLD | NEW |
| (Empty) |
1 #!/usr/bin/python | |
2 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | |
3 # Use of this source code is governed by a BSD-style license that can be | |
4 # found in the LICENSE file. | |
5 | |
6 """Certificate chain with 2 intermediates. The first intermediate has a basic | |
7 constraints path length of 0. The second one is self-issued so does not count | |
8 against the path length.""" | |
9 | |
10 import common | |
11 | |
12 # Self-signed root certificate (used as trust anchor). | |
13 root = common.create_self_signed_root_certificate('Root') | |
14 | |
15 # Intermediate with pathlen 0 | |
16 intermediate1 = common.create_intermediate_certificate('Intermediate', root) | |
17 intermediate1.get_extensions().set_property('basicConstraints', | |
18 'critical,CA:true,pathlen:0') | |
19 | |
20 # Another intermediate (with the same pathlen restriction). | |
21 # Note that this is self-issued but NOT self-signed. | |
22 intermediate2 = common.create_intermediate_certificate('Intermediate', | |
23 intermediate1) | |
24 intermediate2.get_extensions().set_property('basicConstraints', | |
25 'critical,CA:true,pathlen:0') | |
26 | |
27 # Target certificate. | |
28 target = common.create_end_entity_certificate('Target', intermediate2) | |
29 | |
30 chain = [target, intermediate2, intermediate1] | |
31 trusted = common.TrustAnchor(root, constrained=False) | |
32 time = common.DEFAULT_TIME | |
33 key_purpose = common.DEFAULT_KEY_PURPOSE | |
34 verify_result = True | |
35 errors = None | |
36 | |
37 common.write_test_file(__doc__, chain, trusted, time, key_purpose, | |
38 verify_result, errors) | |
OLD | NEW |