We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c267d1f commit 1e6516aCopy full SHA for 1e6516a
test/make_internal_ssl.py
@@ -31,15 +31,14 @@ def make_certs():
31
"DNS:localhost",
32
]
33
certipy = Certipy(store_dir=ssl_dir)
34
- _trust_bundles = certipy.trust_from_graph({
35
- "backend-ca": ["proxy-client-ca"],
36
- "proxy-client-ca": ["backend-ca"],
37
- })
+ _trust_bundles = certipy.trust_from_graph(
+ {
+ "backend-ca": ["proxy-client-ca"],
+ "proxy-client-ca": ["backend-ca"],
38
+ }
39
+ )
40
for name in ("backend", "proxy-client"):
- certipy.create_signed_pair(
- name, f"{name}-ca", alt_names=alt_names
41
- )
42
-
+ certipy.create_signed_pair(name, f"{name}-ca", alt_names=alt_names)
43
44
45
async def client_connected(reader, writer):
0 commit comments