Load user private key. This is used for authenticating using certificate
(self, path)
| 217 | self.user_certificate = uacrypto.load_certificate(path) |
| 218 | |
| 219 | def load_private_key(self, path): |
| 220 | """ |
| 221 | Load user private key. This is used for authenticating using certificate |
| 222 | """ |
| 223 | self.user_private_key = uacrypto.load_private_key(path) |
| 224 | |
| 225 | def connect_and_get_server_endpoints(self): |
| 226 | """ |
no outgoing calls