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

Side by Side Diff: net/data/verify_certificate_chain_unittest/generate-basic-constraints-pathlen-0-self-issued.py

Issue 2282183004: Add error information to VerifyCertificateChain(). (Closed)
Patch Set: fix typo in README Created 4 years, 3 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) 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. The second one is self-issued so does not count 7 constraints path length of 0. The second one is self-issued so does not count
8 against the path length.""" 8 against the path length."""
9 9
10 import common 10 import common
(...skipping 13 matching lines...) Expand all
24 intermediate2.get_extensions().set_property('basicConstraints', 24 intermediate2.get_extensions().set_property('basicConstraints',
25 'critical,CA:true,pathlen:0') 25 'critical,CA:true,pathlen:0')
26 26
27 # Target certificate. 27 # Target certificate.
28 target = common.create_end_entity_certificate('Target', intermediate2) 28 target = common.create_end_entity_certificate('Target', intermediate2)
29 29
30 chain = [target, intermediate2, intermediate1] 30 chain = [target, intermediate2, intermediate1]
31 trusted = common.TrustAnchor(root, constrained=False) 31 trusted = common.TrustAnchor(root, constrained=False)
32 time = common.DEFAULT_TIME 32 time = common.DEFAULT_TIME
33 verify_result = True 33 verify_result = True
34 errors = None
34 35
35 common.write_test_file(__doc__, chain, trusted, time, verify_result) 36 common.write_test_file(__doc__, chain, trusted, time, verify_result, errors)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698