(self, cert_file, key_file, password)
| 641 | self.server = SSLDomain(SSLDomain.MODE_SERVER) |
| 642 | |
| 643 | def set_credentials(self, cert_file, key_file, password): |
| 644 | self.client.set_credentials(cert_file, key_file, password) |
| 645 | self.server.set_credentials(cert_file, key_file, password) |
| 646 | |
| 647 | def set_trusted_ca_db(self, certificate_db): |
| 648 | self.client.set_trusted_ca_db(certificate_db) |
no outgoing calls