Helper method to convert DER certificate bytes to Python dict
(&self, vm: &VirtualMachine, cert_der: &[u8])
| 861 | impl PySSLContext { |
| 862 | // Helper method to convert DER certificate bytes to Python dict |
| 863 | fn cert_der_to_dict(&self, vm: &VirtualMachine, cert_der: &[u8]) -> PyResult<PyObjectRef> { |
| 864 | cert::cert_der_to_dict_helper(vm, cert_der) |
| 865 | } |
| 866 | |
| 867 | #[pygetset] |
| 868 | fn check_hostname(&self) -> bool { |
no test coverage detected