load our certificate from file, either pem or der
(self, path)
| 211 | self.uaclient.set_security(self.security_policy) |
| 212 | |
| 213 | def load_client_certificate(self, path): |
| 214 | """ |
| 215 | load our certificate from file, either pem or der |
| 216 | """ |
| 217 | self.user_certificate = uacrypto.load_certificate(path) |
| 218 | |
| 219 | def load_private_key(self, path): |
| 220 | """ |
no test coverage detected