(cls, text)
| 47 | |
| 48 | @classmethod |
| 49 | def parse_pem_cert(cls, text): |
| 50 | cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, text.encode('utf-8')) |
| 51 | return MDCertUtil(None, cert=cert) |
| 52 | |
| 53 | @classmethod |
| 54 | def get_plain(cls, url, timeout): |
no test coverage detected