blob: 0662ce48cf732d842d0bd29f51fe1a7a137e3538 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from dataclasses import dataclass
@dataclass
class SSLCertBundle:
# The complete certificate chain.
certificate_chain: str
# The private key.
private_key: str
# The public key.
public_key: str
|