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 1 intermediate and a trusted root. The target | 6 """Certificate chain with 1 intermediate and a trusted root. The target |
7 certificate has an unknown X.509v3 extension (OID=1.2.3.4) that is marked as | 7 certificate has an unknown X.509v3 extension (OID=1.2.3.4) that is marked as |
8 critical. Verifying this certificate chain is expected to fail because there is | 8 critical. Verifying this certificate chain is expected to fail because there is |
9 an unrecognized critical extension.""" | 9 an unrecognized critical extension.""" |
10 | 10 |
| 11 import sys |
| 12 sys.path += ['..'] |
| 13 |
11 import common | 14 import common |
12 | 15 |
13 # Self-signed root certificate (used as trust anchor). | 16 # Self-signed root certificate (used as trust anchor). |
14 root = common.create_self_signed_root_certificate('Root') | 17 root = common.create_self_signed_root_certificate('Root') |
15 | 18 |
16 # Intermediate certificate. | 19 # Intermediate certificate. |
17 intermediate = common.create_intermediate_certificate('Intermediate', root) | 20 intermediate = common.create_intermediate_certificate('Intermediate', root) |
18 | 21 |
19 # Target certificate (has unknown critical extension). | 22 # Target certificate (has unknown critical extension). |
20 target = common.create_end_entity_certificate('Target', intermediate) | 23 target = common.create_end_entity_certificate('Target', intermediate) |
21 target.get_extensions().add_property('1.2.3.4', | 24 target.get_extensions().add_property('1.2.3.4', |
22 'critical,DER:01:02:03:04') | 25 'critical,DER:01:02:03:04') |
23 | 26 |
24 chain = [target, intermediate] | 27 chain = [target, intermediate, root] |
25 trusted = common.TrustAnchor(root, constrained=False) | 28 common.write_chain(__doc__, chain, 'chain.pem') |
26 time = common.DEFAULT_TIME | |
27 key_purpose = common.DEFAULT_KEY_PURPOSE | |
28 verify_result = False | |
29 errors = """----- Certificate i=0 (CN=Target) ----- | |
30 ERROR: Unconsumed critical extension | |
31 oid: 2A0304 | |
32 value: 01020304 | |
33 | |
34 """ | |
35 | |
36 common.write_test_file(__doc__, chain, trusted, time, key_purpose, | |
37 verify_result, errors) | |
OLD | NEW |