class documentation

Base class for public (certificate only) and private (certificate + key pair) certificates.

Method __conform__ Convert this CertBase into a provider of the given interface.
Method __init__ Undocumented
Method getSubject Retrieve the subject of this certificate.
Instance Variable original The underlying OpenSSL certificate object.
Method _copyName Undocumented
def __conform__(self, interface): (source)

Convert this CertBase into a provider of the given interface.

Parameters
interface:zope.interface.interfaces.IInterfaceThe interface to conform to.
Returns
IOpenSSLTrustRoot or NotImplementedan IOpenSSLTrustRoot provider or NotImplemented
def __init__(self, original): (source)

Undocumented

def getSubject(self): (source)

Retrieve the subject of this certificate.

Returns
DistinguishedNameA copy of the subject of this certificate.

The underlying OpenSSL certificate object.

def _copyName(self, suffix): (source)

Undocumented