| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 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 | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Certificate chain with 2 intermediates. The first intermediate has a basic | 6 """Certificate chain with 2 intermediates. The first intermediate has a basic |
| 7 constraints path length of 0, so it is a violation for it to have a subordinate | 7 constraints path length of 0, so it is a violation for it to have a subordinate |
| 8 intermediate.""" | 8 intermediate.""" |
| 9 | 9 |
| 10 import common | 10 import common |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 intermediate2.get_extensions().set_property('basicConstraints', | 23 intermediate2.get_extensions().set_property('basicConstraints', |
| 24 'critical,CA:true,pathlen:0') | 24 'critical,CA:true,pathlen:0') |
| 25 | 25 |
| 26 # Target certificate. | 26 # Target certificate. |
| 27 target = common.create_end_entity_certificate('Target', intermediate2) | 27 target = common.create_end_entity_certificate('Target', intermediate2) |
| 28 | 28 |
| 29 chain = [target, intermediate2, intermediate1] | 29 chain = [target, intermediate2, intermediate1] |
| 30 trusted = common.TrustAnchor(root, constrained=False) | 30 trusted = common.TrustAnchor(root, constrained=False) |
| 31 time = common.DEFAULT_TIME | 31 time = common.DEFAULT_TIME |
| 32 verify_result = False | 32 verify_result = False |
| 33 errors = ['max_path_length reached'] | 33 errors = """max_path_length reached""" |
| 34 | 34 |
| 35 common.write_test_file(__doc__, chain, trusted, time, verify_result, errors) | 35 common.write_test_file(__doc__, chain, trusted, time, verify_result, errors) |
| OLD | NEW |