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

Side by Side Diff: net/data/cert_issuer_source_aia_unittest/generate-certs.py

Issue 2036033002: Add CertIssuerSourceAia: authorityInfoAccess fetching for CertPathBuilder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cert-parsing-path-building
Patch Set: . Created 4 years, 6 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
(Empty)
1 #!/usr/bin/env python
2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 import os
7 import sys
8 sys.path += [os.path.join('..', 'verify_certificate_chain_unittest')]
eroman 2016/06/03 16:28:52 I wonder if we should move this somewhere more gen
mattm 2016/06/03 21:27:27 Probably. I'm not sure where though.
9
10 import common
11
12
13 # Self-signed root certificate. Not saved to a .pem since the test doesn't need
14 # it.
15 root = common.create_self_signed_root_certificate('Root')
16
17
18 # Intermediary certificates. All have the same subject and key.
19 i_base = common.create_intermediary_certificate('I', root)
20 common.write_string_to_file(i_base.get_cert_pem(), 'i.pem')
21
22 i2 = common.create_intermediary_certificate('I', root, key_from=i_base)
23 common.write_string_to_file(i2.get_cert_pem(), 'i2.pem')
24
25 i3 = common.create_intermediary_certificate('I', root, key_from=i_base)
26 common.write_string_to_file(i3.get_cert_pem(), 'i3.pem')
27
28
29 # More Intermediary certificates, which are just to generate the proper config
30 # files so the target certs will have the desired Authority Information Access
31 # values. These ones aren't saved to files.
32 i_no_aia = common.create_intermediary_certificate('I', root, key_from=i_base)
33 section = i_no_aia.config.get_section('signing_ca_ext')
34 section.set_property('authorityInfoAccess', None)
35
36 i_two_aia = common.create_intermediary_certificate('I', root, key_from=i_base)
37 section = i_two_aia.config.get_section('issuer_info')
38 section.set_property('caIssuers;URI.1', 'http://url-for-aia2/I2.foo')
39
40 i_three_aia = common.create_intermediary_certificate('I', root, key_from=i_base)
41 section = i_three_aia.config.get_section('issuer_info')
42 section.set_property('caIssuers;URI.1', 'http://url-for-aia2/I2.foo')
43 section.set_property('caIssuers;URI.2', 'http://url-for-aia3/I3.foo')
44
45 i_file_aia = common.create_intermediary_certificate('I', root, key_from=i_base)
46 section = i_file_aia.config.get_section('issuer_info')
47 section.set_property('caIssuers;URI.0', 'file:///dev/null')
48
49 i_file_and_http_aia = common.create_intermediary_certificate('I', root,
50 key_from=i_base)
51 section = i_file_and_http_aia.config.get_section('issuer_info')
52 section.set_property('caIssuers;URI.0', 'file:///dev/null')
53 section.set_property('caIssuers;URI.1', 'http://url-for-aia2/I2.foo')
54
55
56 # target certs
57
58 target = common.create_end_entity_certificate('target', i_base)
59 common.write_string_to_file(target.get_cert_pem(), 'target_one_aia.pem')
60
61 target = common.create_end_entity_certificate('target', i_no_aia)
62 common.write_string_to_file(target.get_cert_pem(), 'target_no_aia.pem')
63
64 target = common.create_end_entity_certificate('target', i_two_aia)
65 common.write_string_to_file(target.get_cert_pem(), 'target_two_aia.pem')
66
67 target = common.create_end_entity_certificate('target', i_three_aia)
68 common.write_string_to_file(target.get_cert_pem(), 'target_three_aia.pem')
69
70 target = common.create_end_entity_certificate('target', i_file_aia)
71 common.write_string_to_file(target.get_cert_pem(), 'target_file_aia.pem')
72
73 target = common.create_end_entity_certificate('target', i_file_and_http_aia)
74 common.write_string_to_file(target.get_cert_pem(),
75 'target_file_and_http_aia.pem')
76
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698