twisted.internet._sslverify.CertBase
class documentationtwisted.internet._sslverify
View Source
(View In Hierarchy)
Known subclasses: twisted.internet.ssl.Certificate, twisted.internet.ssl.CertificateRequest
Base class for public (certificate only) and private (certificate + key pair) certificates.
Instance Variable | original | The underlying OpenSSL certificate object. (type: OpenSSL.crypto.X509 ) |
Method | __init__ | Undocumented |
Method | getSubject | Retrieve the subject of this certificate. |
Method | __conform__ | Convert this CertBase
into a provider of the given interface. |
Method | _copyName | Undocumented |
Retrieve the subject of this certificate.
Returns | A copy of the subject of this certificate. (type: DistinguishedName ) |
Convert this CertBase
into a provider of the given interface.
Parameters | interface | The interface to conform to. (type: zope.interface.interfaces.IInterface ) |
Returns | an IOpenSSLTrustRoot
provider or NotImplemented (type: IOpenSSLTrustRoot
or NotImplemented ) |