Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(596)

Side by Side Diff: net/data/verify_certificate_chain_unittest/generate-violates-pathlen-1-constrained-root.py

Issue 2759023002: Improvements to the net/cert/internal error handling. (Closed)
Patch Set: fix comment Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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, and constraints are enforced 7 root certificate has a pathlen:1 restriction, and constraints are enforced
8 on this trust anchor making it an invalid chain.""" 8 on this trust anchor making it an invalid chain."""
9 9
10 import common 10 import common
(...skipping 10 matching lines...) Expand all
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=True) 28 trusted = common.TrustAnchor(root, constrained=True)
29 time = common.DEFAULT_TIME 29 time = common.DEFAULT_TIME
30 verify_result = False 30 verify_result = False
31 errors = """[Context] Processing Certificate 31 errors = """----- Certificate i=1 (CN=Intermediate2) -----
32 index: 1 32 ERROR: max_path_length reached
33 [Error] max_path_length reached 33
34 """ 34 """
35 35
36 common.write_test_file(__doc__, chain, trusted, time, verify_result, errors) 36 common.write_test_file(__doc__, chain, trusted, time, verify_result, errors)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698