(self, ciphers: bytes | str)
| 455 | self._ctx.set_default_verify_paths() |
| 456 | |
| 457 | def set_ciphers(self, ciphers: bytes | str) -> None: |
| 458 | if isinstance(ciphers, str): |
| 459 | ciphers = ciphers.encode("utf-8") |
| 460 | self._ctx.set_cipher_list(ciphers) |
| 461 | |
| 462 | def load_verify_locations( |
| 463 | self, |
no outgoing calls