(self)
| 101 | |
| 102 | # Load and create cert files is necessary |
| 103 | def loadCerts(self): |
| 104 | if config.disable_encryption: |
| 105 | return False |
| 106 | |
| 107 | if self.createSslRsaCert() and "tls-rsa" not in self.crypt_supported: |
| 108 | self.crypt_supported.append("tls-rsa") |
| 109 | |
| 110 | # Try to create RSA server cert + sign for connection encryption |
| 111 | # Return: True on success |