| 430 | |
| 431 | @dataclass(frozen=True) |
| 432 | class CertStoreEntry: |
| 433 | cert: Cert |
| 434 | privatekey: rsa.RSAPrivateKey |
| 435 | chain_file: Path | None |
| 436 | chain_certs: list[Cert] |
| 437 | |
| 438 | |
| 439 | TCustomCertId = str # manually provided certs (e.g. mitmproxy's --certs) |
no outgoing calls
no test coverage detected
searching dependent graphs…