(self, fpath: str)
| 213 | return os.path.join(self._store_dir, f'{name}{key_infix}.pkey.pem') |
| 214 | |
| 215 | def load_pem_cert(self, fpath: str) -> x509.Certificate: |
| 216 | with open(fpath) as fd: |
| 217 | return x509.load_pem_x509_certificate("".join(fd.readlines()).encode()) |
| 218 | |
| 219 | def load_pem_pkey(self, fpath: str): |
| 220 | with open(fpath) as fd: |