diff options
author | Mike Taylor <bear42@gmail.com> | 2015-07-03 15:07:35 -0400 |
---|---|---|
committer | Mike Taylor <bear42@gmail.com> | 2015-07-03 15:07:35 -0400 |
commit | c024ac8f0b58d114d72660a1967f1632546606ed (patch) | |
tree | 5d1bb0dba79c46000fe2d4603ace49ddd6cc0c96 /sleekxmpp/xmlstream | |
parent | a8ac115310c1b9aaa80cc0d48a1157396b29abd3 (diff) | |
parent | f00177c0cf5512a86b37ba69fc627ddf92abdc6b (diff) | |
download | slixmpp-c024ac8f0b58d114d72660a1967f1632546606ed.tar.gz slixmpp-c024ac8f0b58d114d72660a1967f1632546606ed.tar.bz2 slixmpp-c024ac8f0b58d114d72660a1967f1632546606ed.tar.xz slixmpp-c024ac8f0b58d114d72660a1967f1632546606ed.zip |
Merge pull request #382 from sangeeths/initialize_certificate
Initialize certfile, keyfile and ca_certs in XMLStream. Added **kwargs to ClientXMPP, BaseXMPP and XMLStream.
Diffstat (limited to 'sleekxmpp/xmlstream')
-rw-r--r-- | sleekxmpp/xmlstream/cert.py | 2 | ||||
-rw-r--r-- | sleekxmpp/xmlstream/xmlstream.py | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/sleekxmpp/xmlstream/cert.py b/sleekxmpp/xmlstream/cert.py index 71146f36..d357b326 100644 --- a/sleekxmpp/xmlstream/cert.py +++ b/sleekxmpp/xmlstream/cert.py @@ -181,4 +181,4 @@ def verify(expected, raw_cert): return True raise CertificateError( - 'Could not match certficate against hostname: %s' % expected) + 'Could not match certificate against hostname: %s' % expected) diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index f9ec4947..62d46100 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -114,7 +114,8 @@ class XMLStream(object): :param int port: The port to use for the connection. Defaults to 0. """ - def __init__(self, socket=None, host='', port=0): + def __init__(self, socket=None, host='', port=0, certfile=None, + keyfile=None, ca_certs=None, **kwargs): #: Most XMPP servers support TLSv1, but OpenFire in particular #: does not work well with it. For OpenFire, set #: :attr:`ssl_version` to use ``SSLv23``:: @@ -136,16 +137,16 @@ class XMLStream(object): #: #: On Mac OS X, certificates in the system keyring will #: be consulted, even if they are not in the provided file. - self.ca_certs = None + self.ca_certs = ca_certs #: Path to a file containing a client certificate to use for #: authenticating via SASL EXTERNAL. If set, there must also #: be a corresponding `:attr:keyfile` value. - self.certfile = None + self.certfile = certfile #: Path to a file containing the private key for the selected #: client certificate to use for authenticating via SASL EXTERNAL. - self.keyfile = None + self.keyfile = keyfile self._der_cert = None |