class documentation

DefaultOpenSSLContextFactory is a factory for server-side SSL context objects. These objects define certain parameters related to SSL handshakes and the subsequent connection.

Method __getstate__ Undocumented
Method __init__ No summary
Method __setstate__ Undocumented
Method cacheContext Undocumented
Method getContext Return an SSL context.
Instance Variable __dict__ Undocumented
Instance Variable certificateFileName Undocumented
Instance Variable privateKeyFileName Undocumented
Instance Variable sslmethod Undocumented
Instance Variable _context Undocumented
Instance Variable _contextFactory A callable which will be used to create new context objects. This is typically OpenSSL.SSL.Context.

Inherited from ContextFactory:

Class Variable isClient Undocumented
def __getstate__(self):

Undocumented

def __init__(self, privateKeyFileName, certificateFileName, sslmethod=SSL.TLS_METHOD, _contextFactory=SSL.Context):
Parameters
privateKeyFileNameName of a file containing a private key
certificateFileNameName of a file containing a certificate
sslmethodThe SSL method to use
_contextFactoryUndocumented
def __setstate__(self, state):

Undocumented

def cacheContext(self):

Undocumented

__dict__ =

Undocumented

certificateFileName =

Undocumented

privateKeyFileName =

Undocumented

sslmethod =

Undocumented

_context =

Undocumented

_contextFactory =

A callable which will be used to create new context objects. This is typically OpenSSL.SSL.Context.