(self, hostname: str)
| 224 | return False |
| 225 | |
| 226 | def get_ca_pem_file(self, hostname: str) -> Optional[str]: |
| 227 | pem_file = super().get_ca_pem_file(hostname) |
| 228 | if pem_file is None: |
| 229 | pem_file = self.acme_ca_pemfile |
| 230 | return pem_file |
| 231 | |
| 232 | # --------- access local store --------- |
| 233 |
no outgoing calls