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

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

Issue 2130283003: Cleanup: Rename "intermediary" --> "intermediate" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build? Created 4 years, 5 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 intermediaries. The first intermediary 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 intermediary.""" 8 intermediate."""
9 9
10 import common 10 import common
11 11
12 # Self-signed root certificate (part of trust store). 12 # Self-signed root certificate (part of trust store).
13 root = common.create_self_signed_root_certificate('Root') 13 root = common.create_self_signed_root_certificate('Root')
14 14
15 # Intermediary with pathlen 0 15 # Intermediate with pathlen 0
16 intermediary1 = common.create_intermediary_certificate('Intermediary1', root) 16 intermediate1 = common.create_intermediate_certificate('Intermediate1', root)
17 intermediary1.get_extensions().set_property('basicConstraints', 17 intermediate1.get_extensions().set_property('basicConstraints',
18 'critical,CA:true,pathlen:0') 18 'critical,CA:true,pathlen:0')
19 19
20 # Another intermediary (with the same pathlen restriction) 20 # Another intermediate (with the same pathlen restriction)
21 intermediary2 = common.create_intermediary_certificate('Intermediary2', 21 intermediate2 = common.create_intermediate_certificate('Intermediate2',
22 intermediary1) 22 intermediate1)
23 intermediary2.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', intermediary2) 27 target = common.create_end_entity_certificate('Target', intermediate2)
28 28
29 chain = [target, intermediary2, intermediary1] 29 chain = [target, intermediate2, intermediate1]
30 trusted = [root] 30 trusted = [root]
31 time = common.DEFAULT_TIME 31 time = common.DEFAULT_TIME
32 verify_result = False 32 verify_result = False
33 33
34 common.write_test_file(__doc__, chain, trusted, time, verify_result) 34 common.write_test_file(__doc__, chain, trusted, time, verify_result)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698