Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: third_party/tlslite/tlslite/integration/httptlsconnection.py

Issue 210323002: Update tlslite to 0.4.6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Executable bit and --similarity=80 Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/tlslite/tlslite/integration/httptlsconnection.py
diff --git a/third_party/tlslite/tlslite/integration/httptlsconnection.py b/third_party/tlslite/tlslite/integration/httptlsconnection.py
index e59d246aaae679a6d58fc78ee91b6e9381ad496c..d8a002f9a7c33222539c13fb9eabcc30eddf7672 100644
--- a/third_party/tlslite/tlslite/integration/httptlsconnection.py
+++ b/third_party/tlslite/tlslite/integration/httptlsconnection.py
@@ -1,87 +1,50 @@
+# Authors:
+# Trevor Perrin
+# Kees Bos - Added ignoreAbruptClose parameter
+# Dimitris Moraitis - Anon ciphersuites
+# Martin von Loewis - python 3 port
+#
+# See the LICENSE file for legal information regarding use of this file.
+
"""TLS Lite + httplib."""
import socket
-import httplib
+try:
+ import httplib
+except ImportError:
+ # Python 3
+ from http import client as httplib
from tlslite.tlsconnection import TLSConnection
from tlslite.integration.clienthelper import ClientHelper
-class HTTPBaseTLSConnection(httplib.HTTPConnection):
- """This abstract class provides a framework for adding TLS support
- to httplib."""
-
- default_port = 443
-
- def __init__(self, host, port=None, strict=None):
- if strict == None:
- #Python 2.2 doesn't support strict
- httplib.HTTPConnection.__init__(self, host, port)
- else:
- httplib.HTTPConnection.__init__(self, host, port, strict)
-
- def connect(self):
- sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- if hasattr(sock, 'settimeout'):
- sock.settimeout(10)
- sock.connect((self.host, self.port))
-
- #Use a TLSConnection to emulate a socket
- self.sock = TLSConnection(sock)
-
- #When httplib closes this, close the socket
- self.sock.closeSocket = True
- self._handshake(self.sock)
-
- def _handshake(self, tlsConnection):
- """Called to perform some sort of handshake.
-
- This method must be overridden in a subclass to do some type of
- handshake. This method will be called after the socket has
- been connected but before any data has been sent. If this
- method does not raise an exception, the TLS connection will be
- considered valid.
-
- This method may (or may not) be called every time an HTTP
- request is performed, depending on whether the underlying HTTP
- connection is persistent.
-
- @type tlsConnection: L{tlslite.TLSConnection.TLSConnection}
- @param tlsConnection: The connection to perform the handshake
- on.
- """
- raise NotImplementedError()
-
-
-class HTTPTLSConnection(HTTPBaseTLSConnection, ClientHelper):
- """This class extends L{HTTPBaseTLSConnection} to support the
- common types of handshaking."""
+class HTTPTLSConnection(httplib.HTTPConnection, ClientHelper):
+ """This class extends L{httplib.HTTPConnection} to support TLS."""
- def __init__(self, host, port=None,
- username=None, password=None, sharedKey=None,
- certChain=None, privateKey=None,
- cryptoID=None, protocol=None,
- x509Fingerprint=None,
- x509TrustList=None, x509CommonName=None,
- settings = None):
+ def __init__(self, host, port=None, strict=None,
+ timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
+ source_address=None,
+ username=None, password=None,
+ certChain=None, privateKey=None,
+ checker=None,
+ settings=None,
+ ignoreAbruptClose=False,
+ anon=False):
"""Create a new HTTPTLSConnection.
For client authentication, use one of these argument
combinations:
- username, password (SRP)
- - username, sharedKey (shared-key)
- certChain, privateKey (certificate)
For server authentication, you can either rely on the
- implicit mutual authentication performed by SRP or
- shared-keys, or you can do certificate-based server
+ implicit mutual authentication performed by SRP
+ or you can do certificate-based server
authentication with one of these argument combinations:
- - cryptoID[, protocol] (requires cryptoIDlib)
- x509Fingerprint
- - x509TrustList[, x509CommonName] (requires cryptlib_py)
Certificate-based server authentication is compatible with
- SRP or certificate-based client authentication. It is
- not compatible with shared-keys.
+ SRP or certificate-based client authentication.
The constructor does not perform the TLS handshake itself, but
simply stores these arguments for later. The handshake is
@@ -100,70 +63,50 @@ class HTTPTLSConnection(HTTPBaseTLSConnection, ClientHelper):
@param port: Port to connect to.
@type username: str
- @param username: SRP or shared-key username. Requires the
- 'password' or 'sharedKey' argument.
+ @param username: SRP username. Requires the
+ 'password' argument.
@type password: str
@param password: SRP password for mutual authentication.
Requires the 'username' argument.
- @type sharedKey: str
- @param sharedKey: Shared key for mutual authentication.
- Requires the 'username' argument.
-
- @type certChain: L{tlslite.X509CertChain.X509CertChain} or
- L{cryptoIDlib.CertChain.CertChain}
+ @type certChain: L{tlslite.x509certchain.X509CertChain} or
@param certChain: Certificate chain for client authentication.
- Requires the 'privateKey' argument. Excludes the SRP or
- shared-key related arguments.
-
- @type privateKey: L{tlslite.utils.RSAKey.RSAKey}
+ Requires the 'privateKey' argument. Excludes the SRP arguments.
+
+ @type privateKey: L{tlslite.utils.rsakey.RSAKey}
@param privateKey: Private key for client authentication.
- Requires the 'certChain' argument. Excludes the SRP or
- shared-key related arguments.
-
- @type cryptoID: str
- @param cryptoID: cryptoID for server authentication. Mutually
- exclusive with the 'x509...' arguments.
-
- @type protocol: str
- @param protocol: cryptoID protocol URI for server
- authentication. Requires the 'cryptoID' argument.
-
- @type x509Fingerprint: str
- @param x509Fingerprint: Hex-encoded X.509 fingerprint for
- server authentication. Mutually exclusive with the 'cryptoID'
- and 'x509TrustList' arguments.
-
- @type x509TrustList: list of L{tlslite.X509.X509}
- @param x509TrustList: A list of trusted root certificates. The
- other party must present a certificate chain which extends to
- one of these root certificates. The cryptlib_py module must be
- installed to use this parameter. Mutually exclusive with the
- 'cryptoID' and 'x509Fingerprint' arguments.
-
- @type x509CommonName: str
- @param x509CommonName: The end-entity certificate's 'CN' field
- must match this value. For a web server, this is typically a
- server name such as 'www.amazon.com'. Mutually exclusive with
- the 'cryptoID' and 'x509Fingerprint' arguments. Requires the
- 'x509TrustList' argument.
-
- @type settings: L{tlslite.HandshakeSettings.HandshakeSettings}
+ Requires the 'certChain' argument. Excludes the SRP arguments.
+
+ @type checker: L{tlslite.checker.Checker}
+ @param checker: Callable object called after handshaking to
+ evaluate the connection and raise an Exception if necessary.
+
+ @type settings: L{tlslite.handshakesettings.HandshakeSettings}
@param settings: Various settings which can be used to control
the ciphersuites, certificate types, and SSL/TLS versions
offered by the client.
- """
-
- HTTPBaseTLSConnection.__init__(self, host, port)
+ @type ignoreAbruptClose: bool
+ @param ignoreAbruptClose: ignore the TLSAbruptCloseError on
+ unexpected hangup.
+ """
+ if source_address:
+ httplib.HTTPConnection.__init__(self, host, port, strict,
+ timeout, source_address)
+ if not source_address:
+ httplib.HTTPConnection.__init__(self, host, port, strict,
+ timeout)
+ self.ignoreAbruptClose = ignoreAbruptClose
ClientHelper.__init__(self,
- username, password, sharedKey,
+ username, password,
certChain, privateKey,
- cryptoID, protocol,
- x509Fingerprint,
- x509TrustList, x509CommonName,
- settings)
+ checker,
+ settings,
+ anon)
- def _handshake(self, tlsConnection):
- ClientHelper._handshake(self, tlsConnection)
+ def connect(self):
+ httplib.HTTPConnection.connect(self)
+ self.sock = TLSConnection(self.sock)
+ self.sock.ignoreAbruptClose = self.ignoreAbruptClose
+ ClientHelper._handshake(self, self.sock)
« no previous file with comments | « third_party/tlslite/tlslite/integration/clienthelper.py ('k') | third_party/tlslite/tlslite/integration/imap4_tls.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698