(self)
| 107 | return OpenSSL.crypto.X509.from_cryptography(self._cert) |
| 108 | |
| 109 | def to_cryptography(self) -> x509.Certificate: |
| 110 | return self._cert |
| 111 | |
| 112 | def public_key(self) -> CertificatePublicKeyTypes: |
| 113 | return self._cert.public_key() |
no outgoing calls