| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2016 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 and one end entity certificate. The | 6 """Certificate chain with 2 intermediates and one end entity certificate. The |
| 7 root certificate has a pathlen:1 restriction. Ordinarily this would be an | 7 root certificate has a pathlen:1 restriction. Ordinarily this would be an |
| 8 invalid chain, however constraints on this trust anchor are not enforced.""" | 8 invalid chain, however constraints on this trust anchor are not enforced.""" |
| 9 | 9 |
| 10 import common | 10 import common |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 intermediate2 = common.create_intermediate_certificate('Intermediate2', | 21 intermediate2 = common.create_intermediate_certificate('Intermediate2', |
| 22 intermediate1) | 22 intermediate1) |
| 23 | 23 |
| 24 # Target certificate. | 24 # Target certificate. |
| 25 target = common.create_end_entity_certificate('Target', intermediate2) | 25 target = common.create_end_entity_certificate('Target', intermediate2) |
| 26 | 26 |
| 27 chain = [target, intermediate2, intermediate1] | 27 chain = [target, intermediate2, intermediate1] |
| 28 trusted = common.TrustAnchor(root, constrained=False) | 28 trusted = common.TrustAnchor(root, constrained=False) |
| 29 time = common.DEFAULT_TIME | 29 time = common.DEFAULT_TIME |
| 30 verify_result = True | 30 verify_result = True |
| 31 errors = None |
| 31 | 32 |
| 32 common.write_test_file(__doc__, chain, trusted, time, verify_result) | 33 common.write_test_file(__doc__, chain, trusted, time, verify_result, errors) |
| OLD | NEW |