blob: c0789ee5cfc0eef815d3af48297e90ee3684d76e [file] [log] [blame]
Antoine Pitroue1bc8982011-01-02 22:12:22 +00001:mod:`ssl` --- TLS/SSL wrapper for socket objects
2=================================================
Thomas Woutersed03b412007-08-28 21:37:11 +00003
4.. module:: ssl
Antoine Pitroue1bc8982011-01-02 22:12:22 +00005 :synopsis: TLS/SSL wrapper for socket objects
Thomas Wouters47b49bf2007-08-30 22:15:33 +00006
7.. moduleauthor:: Bill Janssen <bill.janssen@gmail.com>
Thomas Wouters47b49bf2007-08-30 22:15:33 +00008.. sectionauthor:: Bill Janssen <bill.janssen@gmail.com>
9
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040010**Source code:** :source:`Lib/ssl.py`
Thomas Woutersed03b412007-08-28 21:37:11 +000011
Thomas Wouters1b7f8912007-09-19 03:06:30 +000012.. index:: single: OpenSSL; (use in module ssl)
13
14.. index:: TLS, SSL, Transport Layer Security, Secure Sockets Layer
15
Raymond Hettinger469271d2011-01-27 20:38:46 +000016--------------
17
Georg Brandl7f01a132009-09-16 15:58:14 +000018This module provides access to Transport Layer Security (often known as "Secure
19Sockets Layer") encryption and peer authentication facilities for network
20sockets, both client-side and server-side. This module uses the OpenSSL
21library. It is available on all modern Unix systems, Windows, Mac OS X, and
22probably additional platforms, as long as OpenSSL is installed on that platform.
Thomas Woutersed03b412007-08-28 21:37:11 +000023
24.. note::
25
Georg Brandl7f01a132009-09-16 15:58:14 +000026 Some behavior may be platform dependent, since calls are made to the
27 operating system socket APIs. The installed version of OpenSSL may also
Antoine Pitrou2463e5f2013-03-28 22:24:43 +010028 cause variations in behavior. For example, TLSv1.1 and TLSv1.2 come with
29 openssl version 1.0.1.
Thomas Woutersed03b412007-08-28 21:37:11 +000030
Christian Heimes3046fe42013-10-29 21:08:56 +010031.. warning::
Antoine Pitrou9eefe912013-11-17 15:35:33 +010032 Don't use this module without reading the :ref:`ssl-security`. Doing so
33 may lead to a false sense of security, as the default settings of the
34 ssl module are not necessarily appropriate for your application.
Christian Heimes3046fe42013-10-29 21:08:56 +010035
Christian Heimes3046fe42013-10-29 21:08:56 +010036
Georg Brandl7f01a132009-09-16 15:58:14 +000037This section documents the objects and functions in the ``ssl`` module; for more
38general information about TLS, SSL, and certificates, the reader is referred to
39the documents in the "See Also" section at the bottom.
Thomas Woutersed03b412007-08-28 21:37:11 +000040
Georg Brandl7f01a132009-09-16 15:58:14 +000041This module provides a class, :class:`ssl.SSLSocket`, which is derived from the
42:class:`socket.socket` type, and provides a socket-like wrapper that also
43encrypts and decrypts the data going over the socket with SSL. It supports
Antoine Pitroudab64262010-09-19 13:31:06 +000044additional methods such as :meth:`getpeercert`, which retrieves the
Mathieu Dupuyc49016e2020-03-30 23:28:25 +020045certificate of the other side of the connection, and :meth:`cipher`, which
Antoine Pitroudab64262010-09-19 13:31:06 +000046retrieves the cipher being used for the secure connection.
Thomas Woutersed03b412007-08-28 21:37:11 +000047
Antoine Pitrou152efa22010-05-16 18:19:27 +000048For more sophisticated applications, the :class:`ssl.SSLContext` class
49helps manage settings and certificates, which can then be inherited
50by SSL sockets created through the :meth:`SSLContext.wrap_socket` method.
51
Mayank Singhal9ef1b062018-06-05 19:44:37 +053052.. versionchanged:: 3.5.3
53 Updated to support linking with OpenSSL 1.1.0
54
Christian Heimes01113fa2016-09-05 23:23:24 +020055.. versionchanged:: 3.6
56
57 OpenSSL 0.9.8, 1.0.0 and 1.0.1 are deprecated and no longer supported.
58 In the future the ssl module will require at least OpenSSL 1.0.2 or
59 1.1.0.
60
Antoine Pitrou152efa22010-05-16 18:19:27 +000061
Thomas Wouters1b7f8912007-09-19 03:06:30 +000062Functions, Constants, and Exceptions
63------------------------------------
64
Christian Heimes90f05a52018-02-27 09:21:34 +010065
66Socket creation
67^^^^^^^^^^^^^^^
68
69Since Python 3.2 and 2.7.9, it is recommended to use the
70:meth:`SSLContext.wrap_socket` of an :class:`SSLContext` instance to wrap
71sockets as :class:`SSLSocket` objects. The helper functions
72:func:`create_default_context` returns a new context with secure default
73settings. The old :func:`wrap_socket` function is deprecated since it is
74both inefficient and has no support for server name indication (SNI) and
75hostname matching.
76
77Client socket example with default context and IPv4/IPv6 dual stack::
78
79 import socket
80 import ssl
81
82 hostname = 'www.python.org'
83 context = ssl.create_default_context()
84
85 with socket.create_connection((hostname, 443)) as sock:
86 with context.wrap_socket(sock, server_hostname=hostname) as ssock:
87 print(ssock.version())
88
89
90Client socket example with custom context and IPv4::
91
92 hostname = 'www.python.org'
93 # PROTOCOL_TLS_CLIENT requires valid cert chain and hostname
94 context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
95 context.load_verify_locations('path/to/cabundle.pem')
96
97 with socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0) as sock:
98 with context.wrap_socket(sock, server_hostname=hostname) as ssock:
99 print(ssock.version())
100
101
102Server socket example listening on localhost IPv4::
103
104 context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
105 context.load_cert_chain('/path/to/certchain.pem', '/path/to/private.key')
106
107 with socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0) as sock:
108 sock.bind(('127.0.0.1', 8443))
109 sock.listen(5)
110 with context.wrap_socket(sock, server_side=True) as ssock:
111 conn, addr = ssock.accept()
112 ...
113
114
115Context creation
116^^^^^^^^^^^^^^^^
117
118A convenience function helps create :class:`SSLContext` objects for common
119purposes.
120
121.. function:: create_default_context(purpose=Purpose.SERVER_AUTH, cafile=None, capath=None, cadata=None)
122
123 Return a new :class:`SSLContext` object with default settings for
124 the given *purpose*. The settings are chosen by the :mod:`ssl` module,
125 and usually represent a higher security level than when calling the
126 :class:`SSLContext` constructor directly.
127
128 *cafile*, *capath*, *cadata* represent optional CA certificates to
129 trust for certificate verification, as in
130 :meth:`SSLContext.load_verify_locations`. If all three are
131 :const:`None`, this function can choose to trust the system's default
132 CA certificates instead.
133
134 The settings are: :data:`PROTOCOL_TLS`, :data:`OP_NO_SSLv2`, and
135 :data:`OP_NO_SSLv3` with high encryption cipher suites without RC4 and
136 without unauthenticated cipher suites. Passing :data:`~Purpose.SERVER_AUTH`
137 as *purpose* sets :data:`~SSLContext.verify_mode` to :data:`CERT_REQUIRED`
138 and either loads CA certificates (when at least one of *cafile*, *capath* or
139 *cadata* is given) or uses :meth:`SSLContext.load_default_certs` to load
140 default CA certificates.
141
Christian Heimesc7f70692019-05-31 11:44:05 +0200142 When :attr:`~SSLContext.keylog_filename` is supported and the environment
143 variable :envvar:`SSLKEYLOGFILE` is set, :func:`create_default_context`
144 enables key logging.
145
Christian Heimes90f05a52018-02-27 09:21:34 +0100146 .. note::
147 The protocol, options, cipher and other settings may change to more
148 restrictive values anytime without prior deprecation. The values
149 represent a fair balance between compatibility and security.
150
151 If your application needs specific settings, you should create a
152 :class:`SSLContext` and apply the settings yourself.
153
154 .. note::
155 If you find that when certain older clients or servers attempt to connect
156 with a :class:`SSLContext` created by this function that they get an error
157 stating "Protocol or cipher suite mismatch", it may be that they only
158 support SSL3.0 which this function excludes using the
159 :data:`OP_NO_SSLv3`. SSL3.0 is widely considered to be `completely broken
160 <https://en.wikipedia.org/wiki/POODLE>`_. If you still wish to continue to
161 use this function but still allow SSL 3.0 connections you can re-enable
162 them using::
163
164 ctx = ssl.create_default_context(Purpose.CLIENT_AUTH)
165 ctx.options &= ~ssl.OP_NO_SSLv3
166
167 .. versionadded:: 3.4
168
169 .. versionchanged:: 3.4.4
170
171 RC4 was dropped from the default cipher string.
172
173 .. versionchanged:: 3.6
174
175 ChaCha20/Poly1305 was added to the default cipher string.
176
177 3DES was dropped from the default cipher string.
178
Christian Heimesc7f70692019-05-31 11:44:05 +0200179 .. versionchanged:: 3.8
180
181 Support for key logging to :envvar:`SSLKEYLOGFILE` was added.
182
Christian Heimes90f05a52018-02-27 09:21:34 +0100183
184Exceptions
185^^^^^^^^^^
186
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000187.. exception:: SSLError
188
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000189 Raised to signal an error from the underlying SSL implementation
190 (currently provided by the OpenSSL library). This signifies some
191 problem in the higher-level encryption and authentication layer that's
192 superimposed on the underlying network connection. This error
Antoine Pitrou5574c302011-10-12 17:53:43 +0200193 is a subtype of :exc:`OSError`. The error code and message of
194 :exc:`SSLError` instances are provided by the OpenSSL library.
195
196 .. versionchanged:: 3.3
197 :exc:`SSLError` used to be a subtype of :exc:`socket.error`.
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000198
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200199 .. attribute:: library
200
201 A string mnemonic designating the OpenSSL submodule in which the error
202 occurred, such as ``SSL``, ``PEM`` or ``X509``. The range of possible
203 values depends on the OpenSSL version.
204
205 .. versionadded:: 3.3
206
207 .. attribute:: reason
208
209 A string mnemonic designating the reason this error occurred, for
210 example ``CERTIFICATE_VERIFY_FAILED``. The range of possible
211 values depends on the OpenSSL version.
212
213 .. versionadded:: 3.3
214
Antoine Pitrou41032a62011-10-27 23:56:55 +0200215.. exception:: SSLZeroReturnError
216
217 A subclass of :exc:`SSLError` raised when trying to read or write and
218 the SSL connection has been closed cleanly. Note that this doesn't
219 mean that the underlying transport (read TCP) has been closed.
220
221 .. versionadded:: 3.3
222
223.. exception:: SSLWantReadError
224
225 A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket
226 <ssl-nonblocking>` when trying to read or write data, but more data needs
227 to be received on the underlying TCP transport before the request can be
228 fulfilled.
229
230 .. versionadded:: 3.3
231
232.. exception:: SSLWantWriteError
233
234 A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket
235 <ssl-nonblocking>` when trying to read or write data, but more data needs
236 to be sent on the underlying TCP transport before the request can be
237 fulfilled.
238
239 .. versionadded:: 3.3
240
241.. exception:: SSLSyscallError
242
243 A subclass of :exc:`SSLError` raised when a system error was encountered
244 while trying to fulfill an operation on a SSL socket. Unfortunately,
245 there is no easy way to inspect the original errno number.
246
247 .. versionadded:: 3.3
248
249.. exception:: SSLEOFError
250
251 A subclass of :exc:`SSLError` raised when the SSL connection has been
Antoine Pitrouf3dc2d72011-10-28 00:01:03 +0200252 terminated abruptly. Generally, you shouldn't try to reuse the underlying
Antoine Pitrou41032a62011-10-27 23:56:55 +0200253 transport when this error is encountered.
254
255 .. versionadded:: 3.3
256
Christian Heimesb3ad0e52017-09-08 12:00:19 -0700257.. exception:: SSLCertVerificationError
258
259 A subclass of :exc:`SSLError` raised when certificate validation has
260 failed.
261
262 .. versionadded:: 3.7
263
264 .. attribute:: verify_code
265
266 A numeric error number that denotes the verification error.
267
268 .. attribute:: verify_message
269
270 A human readable string of the verification error.
271
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000272.. exception:: CertificateError
273
Christian Heimes61d478c2018-01-27 15:51:38 +0100274 An alias for :exc:`SSLCertVerificationError`.
275
276 .. versionchanged:: 3.7
277 The exception is now an alias for :exc:`SSLCertVerificationError`.
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000278
279
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000280Random generation
281^^^^^^^^^^^^^^^^^
282
Victor Stinner99c8b162011-05-24 12:05:19 +0200283.. function:: RAND_bytes(num)
284
Benjamin Peterson1c69c3e2015-04-11 07:42:42 -0400285 Return *num* cryptographically strong pseudo-random bytes. Raises an
Victor Stinnera6752062011-05-25 11:27:40 +0200286 :class:`SSLError` if the PRNG has not been seeded with enough data or if the
287 operation is not supported by the current RAND method. :func:`RAND_status`
288 can be used to check the status of the PRNG and :func:`RAND_add` can be used
289 to seed the PRNG.
Victor Stinner99c8b162011-05-24 12:05:19 +0200290
Berker Peksageb7a97c2015-04-10 16:19:13 +0300291 For almost all applications :func:`os.urandom` is preferable.
292
Victor Stinner19fb53c2011-05-24 21:32:40 +0200293 Read the Wikipedia article, `Cryptographically secure pseudorandom number
Victor Stinnera6752062011-05-25 11:27:40 +0200294 generator (CSPRNG)
Georg Brandl5d941342016-02-26 19:37:12 +0100295 <https://en.wikipedia.org/wiki/Cryptographically_secure_pseudorandom_number_generator>`_,
Zach Thompsonc2f056b2019-09-10 08:40:14 -0500296 to get the requirements of a cryptographically strong generator.
Victor Stinner19fb53c2011-05-24 21:32:40 +0200297
Victor Stinner99c8b162011-05-24 12:05:19 +0200298 .. versionadded:: 3.3
299
300.. function:: RAND_pseudo_bytes(num)
301
Benjamin Peterson1c69c3e2015-04-11 07:42:42 -0400302 Return (bytes, is_cryptographic): bytes are *num* pseudo-random bytes,
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200303 is_cryptographic is ``True`` if the bytes generated are cryptographically
Victor Stinnera6752062011-05-25 11:27:40 +0200304 strong. Raises an :class:`SSLError` if the operation is not supported by the
305 current RAND method.
Victor Stinner99c8b162011-05-24 12:05:19 +0200306
Victor Stinner19fb53c2011-05-24 21:32:40 +0200307 Generated pseudo-random byte sequences will be unique if they are of
308 sufficient length, but are not necessarily unpredictable. They can be used
309 for non-cryptographic purposes and for certain purposes in cryptographic
310 protocols, but usually not for key generation etc.
311
Berker Peksageb7a97c2015-04-10 16:19:13 +0300312 For almost all applications :func:`os.urandom` is preferable.
313
Victor Stinner99c8b162011-05-24 12:05:19 +0200314 .. versionadded:: 3.3
315
Christian Heimes01113fa2016-09-05 23:23:24 +0200316 .. deprecated:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200317
318 OpenSSL has deprecated :func:`ssl.RAND_pseudo_bytes`, use
319 :func:`ssl.RAND_bytes` instead.
320
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000321.. function:: RAND_status()
322
Benjamin Peterson1c69c3e2015-04-11 07:42:42 -0400323 Return ``True`` if the SSL pseudo-random number generator has been seeded
324 with 'enough' randomness, and ``False`` otherwise. You can use
325 :func:`ssl.RAND_egd` and :func:`ssl.RAND_add` to increase the randomness of
326 the pseudo-random number generator.
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000327
328.. function:: RAND_egd(path)
329
Victor Stinner99c8b162011-05-24 12:05:19 +0200330 If you are running an entropy-gathering daemon (EGD) somewhere, and *path*
Georg Brandl7f01a132009-09-16 15:58:14 +0000331 is the pathname of a socket connection open to it, this will read 256 bytes
332 of randomness from the socket, and add it to the SSL pseudo-random number
333 generator to increase the security of generated secret keys. This is
334 typically only necessary on systems without better sources of randomness.
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000335
Georg Brandl7f01a132009-09-16 15:58:14 +0000336 See http://egd.sourceforge.net/ or http://prngd.sourceforge.net/ for sources
337 of entropy-gathering daemons.
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000338
Cheryl Sabella2d6097d2018-10-12 10:55:20 -0400339 .. availability:: not available with LibreSSL and OpenSSL > 1.1.0.
Victor Stinner3ce67a92015-01-06 13:53:09 +0100340
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000341.. function:: RAND_add(bytes, entropy)
342
Benjamin Peterson1c69c3e2015-04-11 07:42:42 -0400343 Mix the given *bytes* into the SSL pseudo-random number generator. The
Victor Stinner99c8b162011-05-24 12:05:19 +0200344 parameter *entropy* (a float) is a lower bound on the entropy contained in
Georg Brandl7f01a132009-09-16 15:58:14 +0000345 string (so you can always use :const:`0.0`). See :rfc:`1750` for more
346 information on sources of entropy.
Thomas Woutersed03b412007-08-28 21:37:11 +0000347
Georg Brandl8c16cb92016-02-25 20:17:45 +0100348 .. versionchanged:: 3.5
Serhiy Storchaka8490f5a2015-03-20 09:00:36 +0200349 Writable :term:`bytes-like object` is now accepted.
350
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000351Certificate handling
352^^^^^^^^^^^^^^^^^^^^
353
Marco Buttu7b2491a2017-04-13 16:17:59 +0200354.. testsetup::
355
356 import ssl
357
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000358.. function:: match_hostname(cert, hostname)
359
360 Verify that *cert* (in decoded format as returned by
361 :meth:`SSLSocket.getpeercert`) matches the given *hostname*. The rules
362 applied are those for checking the identity of HTTPS servers as outlined
Chandan Kumar63c2c8a2017-06-09 15:13:58 +0530363 in :rfc:`2818`, :rfc:`5280` and :rfc:`6125`. In addition to HTTPS, this
364 function should be suitable for checking the identity of servers in
365 various SSL-based protocols such as FTPS, IMAPS, POPS and others.
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000366
367 :exc:`CertificateError` is raised on failure. On success, the function
368 returns nothing::
369
370 >>> cert = {'subject': ((('commonName', 'example.com'),),)}
371 >>> ssl.match_hostname(cert, "example.com")
372 >>> ssl.match_hostname(cert, "example.org")
373 Traceback (most recent call last):
374 File "<stdin>", line 1, in <module>
375 File "/home/py3k/Lib/ssl.py", line 130, in match_hostname
376 ssl.CertificateError: hostname 'example.org' doesn't match 'example.com'
377
378 .. versionadded:: 3.2
379
Georg Brandl72c98d32013-10-27 07:16:53 +0100380 .. versionchanged:: 3.3.3
381 The function now follows :rfc:`6125`, section 6.4.3 and does neither
382 match multiple wildcards (e.g. ``*.*.com`` or ``*a*.example.org``) nor
383 a wildcard inside an internationalized domain names (IDN) fragment.
384 IDN A-labels such as ``www*.xn--pthon-kva.org`` are still supported,
385 but ``x*.python.org`` no longer matches ``xn--tda.python.org``.
386
Antoine Pitrouc481bfb2015-02-15 18:12:20 +0100387 .. versionchanged:: 3.5
388 Matching of IP addresses, when present in the subjectAltName field
389 of the certificate, is now supported.
390
Mandeep Singhede2ac92017-11-27 04:01:27 +0530391 .. versionchanged:: 3.7
Christian Heimes61d478c2018-01-27 15:51:38 +0100392 The function is no longer used to TLS connections. Hostname matching
393 is now performed by OpenSSL.
394
Mandeep Singhede2ac92017-11-27 04:01:27 +0530395 Allow wildcard when it is the leftmost and the only character
Christian Heimes61d478c2018-01-27 15:51:38 +0100396 in that segment. Partial wildcards like ``www*.example.com`` are no
397 longer supported.
398
399 .. deprecated:: 3.7
Mandeep Singhede2ac92017-11-27 04:01:27 +0530400
Antoine Pitrouc695c952014-04-28 20:57:36 +0200401.. function:: cert_time_to_seconds(cert_time)
Thomas Woutersed03b412007-08-28 21:37:11 +0000402
Antoine Pitrouc695c952014-04-28 20:57:36 +0200403 Return the time in seconds since the Epoch, given the ``cert_time``
404 string representing the "notBefore" or "notAfter" date from a
405 certificate in ``"%b %d %H:%M:%S %Y %Z"`` strptime format (C
406 locale).
Thomas Woutersed03b412007-08-28 21:37:11 +0000407
Antoine Pitrouc695c952014-04-28 20:57:36 +0200408 Here's an example:
Thomas Woutersed03b412007-08-28 21:37:11 +0000409
Antoine Pitrouc695c952014-04-28 20:57:36 +0200410 .. doctest:: newcontext
411
412 >>> import ssl
413 >>> timestamp = ssl.cert_time_to_seconds("Jan 5 09:34:43 2018 GMT")
Marco Buttu7b2491a2017-04-13 16:17:59 +0200414 >>> timestamp # doctest: +SKIP
Antoine Pitrouc695c952014-04-28 20:57:36 +0200415 1515144883
416 >>> from datetime import datetime
Marco Buttu7b2491a2017-04-13 16:17:59 +0200417 >>> print(datetime.utcfromtimestamp(timestamp)) # doctest: +SKIP
Antoine Pitrouc695c952014-04-28 20:57:36 +0200418 2018-01-05 09:34:43
419
420 "notBefore" or "notAfter" dates must use GMT (:rfc:`5280`).
421
422 .. versionchanged:: 3.5
423 Interpret the input time as a time in UTC as specified by 'GMT'
424 timezone in the input string. Local timezone was used
425 previously. Return an integer (no fractions of a second in the
426 input format)
Thomas Woutersed03b412007-08-28 21:37:11 +0000427
Christian Heimes598894f2016-09-05 23:19:05 +0200428.. function:: get_server_certificate(addr, ssl_version=PROTOCOL_TLS, ca_certs=None)
Thomas Woutersed03b412007-08-28 21:37:11 +0000429
Georg Brandl7f01a132009-09-16 15:58:14 +0000430 Given the address ``addr`` of an SSL-protected server, as a (*hostname*,
431 *port-number*) pair, fetches the server's certificate, and returns it as a
432 PEM-encoded string. If ``ssl_version`` is specified, uses that version of
433 the SSL protocol to attempt to connect to the server. If ``ca_certs`` is
434 specified, it should be a file containing a list of root certificates, the
Christian Heimes90f05a52018-02-27 09:21:34 +0100435 same format as used for the same parameter in
436 :meth:`SSLContext.wrap_socket`. The call will attempt to validate the
437 server certificate against that set of root certificates, and will fail
438 if the validation attempt fails.
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000439
Antoine Pitrou15399c32011-04-28 19:23:55 +0200440 .. versionchanged:: 3.3
441 This function is now IPv6-compatible.
442
Antoine Pitrou94a5b662014-04-16 18:56:28 +0200443 .. versionchanged:: 3.5
444 The default *ssl_version* is changed from :data:`PROTOCOL_SSLv3` to
Christian Heimes598894f2016-09-05 23:19:05 +0200445 :data:`PROTOCOL_TLS` for maximum compatibility with modern servers.
Antoine Pitrou94a5b662014-04-16 18:56:28 +0200446
Georg Brandl7f01a132009-09-16 15:58:14 +0000447.. function:: DER_cert_to_PEM_cert(DER_cert_bytes)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000448
449 Given a certificate as a DER-encoded blob of bytes, returns a PEM-encoded
450 string version of the same certificate.
451
Georg Brandl7f01a132009-09-16 15:58:14 +0000452.. function:: PEM_cert_to_DER_cert(PEM_cert_string)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000453
Georg Brandl7f01a132009-09-16 15:58:14 +0000454 Given a certificate as an ASCII PEM string, returns a DER-encoded sequence of
455 bytes for that same certificate.
Thomas Woutersed03b412007-08-28 21:37:11 +0000456
Christian Heimes6d7ad132013-06-09 18:02:55 +0200457.. function:: get_default_verify_paths()
458
459 Returns a named tuple with paths to OpenSSL's default cafile and capath.
460 The paths are the same as used by
461 :meth:`SSLContext.set_default_verify_paths`. The return value is a
462 :term:`named tuple` ``DefaultVerifyPaths``:
463
Serhiy Storchakaecf41da2016-10-19 16:29:26 +0300464 * :attr:`cafile` - resolved path to cafile or ``None`` if the file doesn't exist,
465 * :attr:`capath` - resolved path to capath or ``None`` if the directory doesn't exist,
Christian Heimes6d7ad132013-06-09 18:02:55 +0200466 * :attr:`openssl_cafile_env` - OpenSSL's environment key that points to a cafile,
467 * :attr:`openssl_cafile` - hard coded path to a cafile,
468 * :attr:`openssl_capath_env` - OpenSSL's environment key that points to a capath,
469 * :attr:`openssl_capath` - hard coded path to a capath directory
470
Cheryl Sabella2d6097d2018-10-12 10:55:20 -0400471 .. availability:: LibreSSL ignores the environment vars
472 :attr:`openssl_cafile_env` and :attr:`openssl_capath_env`.
Christian Heimes598894f2016-09-05 23:19:05 +0200473
Christian Heimes6d7ad132013-06-09 18:02:55 +0200474 .. versionadded:: 3.4
475
Christian Heimes44109d72013-11-22 01:51:30 +0100476.. function:: enum_certificates(store_name)
Christian Heimes46bebee2013-06-09 19:03:31 +0200477
478 Retrieve certificates from Windows' system cert store. *store_name* may be
479 one of ``CA``, ``ROOT`` or ``MY``. Windows may provide additional cert
Christian Heimes44109d72013-11-22 01:51:30 +0100480 stores, too.
Christian Heimes46bebee2013-06-09 19:03:31 +0200481
Christian Heimes44109d72013-11-22 01:51:30 +0100482 The function returns a list of (cert_bytes, encoding_type, trust) tuples.
483 The encoding_type specifies the encoding of cert_bytes. It is either
484 :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for
485 PKCS#7 ASN.1 data. Trust specifies the purpose of the certificate as a set
486 of OIDS or exactly ``True`` if the certificate is trustworthy for all
487 purposes.
488
489 Example::
490
491 >>> ssl.enum_certificates("CA")
492 [(b'data...', 'x509_asn', {'1.3.6.1.5.5.7.3.1', '1.3.6.1.5.5.7.3.2'}),
493 (b'data...', 'x509_asn', True)]
Christian Heimes46bebee2013-06-09 19:03:31 +0200494
Cheryl Sabella2d6097d2018-10-12 10:55:20 -0400495 .. availability:: Windows.
Christian Heimes46bebee2013-06-09 19:03:31 +0200496
497 .. versionadded:: 3.4
Christian Heimes6d7ad132013-06-09 18:02:55 +0200498
Christian Heimes44109d72013-11-22 01:51:30 +0100499.. function:: enum_crls(store_name)
500
501 Retrieve CRLs from Windows' system cert store. *store_name* may be
502 one of ``CA``, ``ROOT`` or ``MY``. Windows may provide additional cert
503 stores, too.
504
505 The function returns a list of (cert_bytes, encoding_type, trust) tuples.
506 The encoding_type specifies the encoding of cert_bytes. It is either
507 :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for
508 PKCS#7 ASN.1 data.
509
Cheryl Sabella2d6097d2018-10-12 10:55:20 -0400510 .. availability:: Windows.
Christian Heimes44109d72013-11-22 01:51:30 +0100511
512 .. versionadded:: 3.4
513
Christian Heimes90f05a52018-02-27 09:21:34 +0100514.. function:: wrap_socket(sock, keyfile=None, certfile=None, \
515 server_side=False, cert_reqs=CERT_NONE, ssl_version=PROTOCOL_TLS, \
516 ca_certs=None, do_handshake_on_connect=True, \
517 suppress_ragged_eofs=True, ciphers=None)
518
519 Takes an instance ``sock`` of :class:`socket.socket`, and returns an instance
520 of :class:`ssl.SSLSocket`, a subtype of :class:`socket.socket`, which wraps
521 the underlying socket in an SSL context. ``sock`` must be a
522 :data:`~socket.SOCK_STREAM` socket; other socket types are unsupported.
523
524 Internally, function creates a :class:`SSLContext` with protocol
525 *ssl_version* and :attr:`SSLContext.options` set to *cert_reqs*. If
526 parameters *keyfile*, *certfile*, *ca_certs* or *ciphers* are set, then
527 the values are passed to :meth:`SSLContext.load_cert_chain`,
528 :meth:`SSLContext.load_verify_locations`, and
529 :meth:`SSLContext.set_ciphers`.
530
531 The arguments *server_side*, *do_handshake_on_connect*, and
532 *suppress_ragged_eofs* have the same meaning as
533 :meth:`SSLContext.wrap_socket`.
534
535 .. deprecated:: 3.7
536
537 Since Python 3.2 and 2.7.9, it is recommended to use the
538 :meth:`SSLContext.wrap_socket` instead of :func:`wrap_socket`. The
539 top-level function is limited and creates an insecure client socket
540 without server name indication or hostname matching.
Christian Heimes44109d72013-11-22 01:51:30 +0100541
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000542Constants
543^^^^^^^^^
544
Christian Heimes3aeacad2016-09-10 00:19:35 +0200545 All constants are now :class:`enum.IntEnum` or :class:`enum.IntFlag` collections.
546
547 .. versionadded:: 3.6
548
Thomas Woutersed03b412007-08-28 21:37:11 +0000549.. data:: CERT_NONE
550
Antoine Pitrou152efa22010-05-16 18:19:27 +0000551 Possible value for :attr:`SSLContext.verify_mode`, or the ``cert_reqs``
Christian Heimesef24b6c2018-06-12 00:59:45 +0200552 parameter to :func:`wrap_socket`. Except for :const:`PROTOCOL_TLS_CLIENT`,
553 it is the default mode. With client-side sockets, just about any
554 cert is accepted. Validation errors, such as untrusted or expired cert,
555 are ignored and do not abort the TLS/SSL handshake.
556
557 In server mode, no certificate is requested from the client, so the client
558 does not send any for client cert authentication.
Antoine Pitrou152efa22010-05-16 18:19:27 +0000559
560 See the discussion of :ref:`ssl-security` below.
Thomas Woutersed03b412007-08-28 21:37:11 +0000561
562.. data:: CERT_OPTIONAL
563
Antoine Pitrou152efa22010-05-16 18:19:27 +0000564 Possible value for :attr:`SSLContext.verify_mode`, or the ``cert_reqs``
Christian Heimesef24b6c2018-06-12 00:59:45 +0200565 parameter to :func:`wrap_socket`. In client mode, :const:`CERT_OPTIONAL`
566 has the same meaning as :const:`CERT_REQUIRED`. It is recommended to
567 use :const:`CERT_REQUIRED` for client-side sockets instead.
568
569 In server mode, a client certificate request is sent to the client. The
570 client may either ignore the request or send a certificate in order
571 perform TLS client cert authentication. If the client chooses to send
572 a certificate, it is verified. Any verification error immediately aborts
573 the TLS handshake.
Antoine Pitrou152efa22010-05-16 18:19:27 +0000574
575 Use of this setting requires a valid set of CA certificates to
576 be passed, either to :meth:`SSLContext.load_verify_locations` or as a
577 value of the ``ca_certs`` parameter to :func:`wrap_socket`.
Thomas Woutersed03b412007-08-28 21:37:11 +0000578
579.. data:: CERT_REQUIRED
580
Antoine Pitrou152efa22010-05-16 18:19:27 +0000581 Possible value for :attr:`SSLContext.verify_mode`, or the ``cert_reqs``
582 parameter to :func:`wrap_socket`. In this mode, certificates are
583 required from the other side of the socket connection; an :class:`SSLError`
584 will be raised if no certificate is provided, or if its validation fails.
Christian Heimesef24b6c2018-06-12 00:59:45 +0200585 This mode is **not** sufficient to verify a certificate in client mode as
586 it does not match hostnames. :attr:`~SSLContext.check_hostname` must be
587 enabled as well to verify the authenticity of a cert.
588 :const:`PROTOCOL_TLS_CLIENT` uses :const:`CERT_REQUIRED` and
589 enables :attr:`~SSLContext.check_hostname` by default.
590
591 With server socket, this mode provides mandatory TLS client cert
592 authentication. A client certificate request is sent to the client and
593 the client must provide a valid and trusted certificate.
Antoine Pitrou152efa22010-05-16 18:19:27 +0000594
595 Use of this setting requires a valid set of CA certificates to
596 be passed, either to :meth:`SSLContext.load_verify_locations` or as a
597 value of the ``ca_certs`` parameter to :func:`wrap_socket`.
Thomas Woutersed03b412007-08-28 21:37:11 +0000598
Christian Heimes3aeacad2016-09-10 00:19:35 +0200599.. class:: VerifyMode
600
601 :class:`enum.IntEnum` collection of CERT_* constants.
602
603 .. versionadded:: 3.6
604
Christian Heimes22587792013-11-21 23:56:13 +0100605.. data:: VERIFY_DEFAULT
606
Benjamin Peterson990fcaa2015-03-04 22:49:41 -0500607 Possible value for :attr:`SSLContext.verify_flags`. In this mode, certificate
608 revocation lists (CRLs) are not checked. By default OpenSSL does neither
609 require nor verify CRLs.
Christian Heimes22587792013-11-21 23:56:13 +0100610
611 .. versionadded:: 3.4
612
613.. data:: VERIFY_CRL_CHECK_LEAF
614
615 Possible value for :attr:`SSLContext.verify_flags`. In this mode, only the
Jörn Heissler219fb9d2019-09-17 12:42:30 +0200616 peer cert is checked but none of the intermediate CA certificates. The mode
Christian Heimes22587792013-11-21 23:56:13 +0100617 requires a valid CRL that is signed by the peer cert's issuer (its direct
Serhiy Storchaka1c5d1d72020-05-26 11:04:14 +0300618 ancestor CA). If no proper CRL has been loaded with
Christian Heimes22587792013-11-21 23:56:13 +0100619 :attr:`SSLContext.load_verify_locations`, validation will fail.
620
621 .. versionadded:: 3.4
622
623.. data:: VERIFY_CRL_CHECK_CHAIN
624
625 Possible value for :attr:`SSLContext.verify_flags`. In this mode, CRLs of
626 all certificates in the peer cert chain are checked.
627
628 .. versionadded:: 3.4
629
630.. data:: VERIFY_X509_STRICT
631
632 Possible value for :attr:`SSLContext.verify_flags` to disable workarounds
633 for broken X.509 certificates.
634
635 .. versionadded:: 3.4
636
Chris Burre0b4aa02021-03-18 09:24:01 +0100637.. data:: VERIFY_ALLOW_PROXY_CERTS
638
639 Possible value for :attr:`SSLContext.verify_flags` to enables proxy
640 certificate verification.
641
642 .. versionadded:: 3.10
643
Benjamin Peterson990fcaa2015-03-04 22:49:41 -0500644.. data:: VERIFY_X509_TRUSTED_FIRST
645
646 Possible value for :attr:`SSLContext.verify_flags`. It instructs OpenSSL to
647 prefer trusted certificates when building the trust chain to validate a
648 certificate. This flag is enabled by default.
649
Benjamin Petersonc8358272015-03-08 09:42:25 -0400650 .. versionadded:: 3.4.4
Benjamin Peterson990fcaa2015-03-04 22:49:41 -0500651
Christian Heimes3aeacad2016-09-10 00:19:35 +0200652.. class:: VerifyFlags
653
654 :class:`enum.IntFlag` collection of VERIFY_* constants.
655
656 .. versionadded:: 3.6
657
Christian Heimes598894f2016-09-05 23:19:05 +0200658.. data:: PROTOCOL_TLS
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +0200659
660 Selects the highest protocol version that both the client and server support.
Nathaniel J. Smithd4069de2017-05-01 22:43:31 -0700661 Despite the name, this option can select both "SSL" and "TLS" protocols.
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +0200662
Christian Heimes01113fa2016-09-05 23:23:24 +0200663 .. versionadded:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200664
Christian Heimes5fe668c2016-09-12 00:01:11 +0200665.. data:: PROTOCOL_TLS_CLIENT
666
Nathaniel J. Smithd4069de2017-05-01 22:43:31 -0700667 Auto-negotiate the highest protocol version like :data:`PROTOCOL_TLS`,
Christian Heimes5fe668c2016-09-12 00:01:11 +0200668 but only support client-side :class:`SSLSocket` connections. The protocol
669 enables :data:`CERT_REQUIRED` and :attr:`~SSLContext.check_hostname` by
670 default.
671
672 .. versionadded:: 3.6
673
674.. data:: PROTOCOL_TLS_SERVER
675
Nathaniel J. Smithd4069de2017-05-01 22:43:31 -0700676 Auto-negotiate the highest protocol version like :data:`PROTOCOL_TLS`,
Christian Heimes5fe668c2016-09-12 00:01:11 +0200677 but only support server-side :class:`SSLSocket` connections.
678
679 .. versionadded:: 3.6
680
Christian Heimes598894f2016-09-05 23:19:05 +0200681.. data:: PROTOCOL_SSLv23
682
Toshio Kuratomi7b3a0282019-05-06 15:28:14 -0500683 Alias for :data:`PROTOCOL_TLS`.
Christian Heimes598894f2016-09-05 23:19:05 +0200684
Christian Heimes01113fa2016-09-05 23:23:24 +0200685 .. deprecated:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200686
Berker Peksagd93c4de2017-02-06 13:37:19 +0300687 Use :data:`PROTOCOL_TLS` instead.
Christian Heimes598894f2016-09-05 23:19:05 +0200688
Thomas Woutersed03b412007-08-28 21:37:11 +0000689.. data:: PROTOCOL_SSLv2
690
691 Selects SSL version 2 as the channel encryption protocol.
692
Benjamin Petersonb92fd012014-12-06 11:36:32 -0500693 This protocol is not available if OpenSSL is compiled with the
694 ``OPENSSL_NO_SSL2`` flag.
Victor Stinner3de49192011-05-09 00:42:58 +0200695
Antoine Pitrou8eac60d2010-05-16 14:19:41 +0000696 .. warning::
697
698 SSL version 2 is insecure. Its use is highly discouraged.
699
Christian Heimes01113fa2016-09-05 23:23:24 +0200700 .. deprecated:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200701
702 OpenSSL has removed support for SSLv2.
703
Thomas Woutersed03b412007-08-28 21:37:11 +0000704.. data:: PROTOCOL_SSLv3
705
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +0200706 Selects SSL version 3 as the channel encryption protocol.
707
Benjamin Petersonb92fd012014-12-06 11:36:32 -0500708 This protocol is not be available if OpenSSL is compiled with the
709 ``OPENSSL_NO_SSLv3`` flag.
710
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +0200711 .. warning::
712
713 SSL version 3 is insecure. Its use is highly discouraged.
Thomas Woutersed03b412007-08-28 21:37:11 +0000714
Christian Heimes01113fa2016-09-05 23:23:24 +0200715 .. deprecated:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200716
717 OpenSSL has deprecated all version specific protocols. Use the default
Berker Peksagd93c4de2017-02-06 13:37:19 +0300718 protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead.
Christian Heimes598894f2016-09-05 23:19:05 +0200719
Thomas Woutersed03b412007-08-28 21:37:11 +0000720.. data:: PROTOCOL_TLSv1
721
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100722 Selects TLS version 1.0 as the channel encryption protocol.
723
Christian Heimes01113fa2016-09-05 23:23:24 +0200724 .. deprecated:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200725
726 OpenSSL has deprecated all version specific protocols. Use the default
Berker Peksagd93c4de2017-02-06 13:37:19 +0300727 protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead.
Christian Heimes598894f2016-09-05 23:19:05 +0200728
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100729.. data:: PROTOCOL_TLSv1_1
730
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100731 Selects TLS version 1.1 as the channel encryption protocol.
732 Available only with openssl version 1.0.1+.
733
734 .. versionadded:: 3.4
735
Christian Heimes01113fa2016-09-05 23:23:24 +0200736 .. deprecated:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200737
738 OpenSSL has deprecated all version specific protocols. Use the default
Berker Peksagd93c4de2017-02-06 13:37:19 +0300739 protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead.
Christian Heimes598894f2016-09-05 23:19:05 +0200740
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100741.. data:: PROTOCOL_TLSv1_2
742
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +0200743 Selects TLS version 1.2 as the channel encryption protocol. This is the
744 most modern version, and probably the best choice for maximum protection,
745 if both sides can speak it. Available only with openssl version 1.0.1+.
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100746
747 .. versionadded:: 3.4
Thomas Woutersed03b412007-08-28 21:37:11 +0000748
Christian Heimes01113fa2016-09-05 23:23:24 +0200749 .. deprecated:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200750
751 OpenSSL has deprecated all version specific protocols. Use the default
Berker Peksagd93c4de2017-02-06 13:37:19 +0300752 protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead.
Christian Heimes598894f2016-09-05 23:19:05 +0200753
Antoine Pitroub5218772010-05-21 09:56:06 +0000754.. data:: OP_ALL
755
756 Enables workarounds for various bugs present in other SSL implementations.
Antoine Pitrou9f6b02e2012-01-27 10:02:55 +0100757 This option is set by default. It does not necessarily set the same
758 flags as OpenSSL's ``SSL_OP_ALL`` constant.
Antoine Pitroub5218772010-05-21 09:56:06 +0000759
760 .. versionadded:: 3.2
761
762.. data:: OP_NO_SSLv2
763
764 Prevents an SSLv2 connection. This option is only applicable in
Christian Heimes598894f2016-09-05 23:19:05 +0200765 conjunction with :const:`PROTOCOL_TLS`. It prevents the peers from
Antoine Pitroub5218772010-05-21 09:56:06 +0000766 choosing SSLv2 as the protocol version.
767
768 .. versionadded:: 3.2
769
Christian Heimes01113fa2016-09-05 23:23:24 +0200770 .. deprecated:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200771
772 SSLv2 is deprecated
773
774
Antoine Pitroub5218772010-05-21 09:56:06 +0000775.. data:: OP_NO_SSLv3
776
777 Prevents an SSLv3 connection. This option is only applicable in
Christian Heimes598894f2016-09-05 23:19:05 +0200778 conjunction with :const:`PROTOCOL_TLS`. It prevents the peers from
Antoine Pitroub5218772010-05-21 09:56:06 +0000779 choosing SSLv3 as the protocol version.
780
781 .. versionadded:: 3.2
782
Christian Heimes01113fa2016-09-05 23:23:24 +0200783 .. deprecated:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +0200784
785 SSLv3 is deprecated
786
Antoine Pitroub5218772010-05-21 09:56:06 +0000787.. data:: OP_NO_TLSv1
788
789 Prevents a TLSv1 connection. This option is only applicable in
Christian Heimes598894f2016-09-05 23:19:05 +0200790 conjunction with :const:`PROTOCOL_TLS`. It prevents the peers from
Antoine Pitroub5218772010-05-21 09:56:06 +0000791 choosing TLSv1 as the protocol version.
792
793 .. versionadded:: 3.2
794
Christian Heimes698dde12018-02-27 11:54:43 +0100795 .. deprecated:: 3.7
796 The option is deprecated since OpenSSL 1.1.0, use the new
797 :attr:`SSLContext.minimum_version` and
798 :attr:`SSLContext.maximum_version` instead.
799
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100800.. data:: OP_NO_TLSv1_1
801
802 Prevents a TLSv1.1 connection. This option is only applicable in conjunction
Christian Heimes598894f2016-09-05 23:19:05 +0200803 with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.1 as
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100804 the protocol version. Available only with openssl version 1.0.1+.
805
806 .. versionadded:: 3.4
807
Christian Heimes698dde12018-02-27 11:54:43 +0100808 .. deprecated:: 3.7
809 The option is deprecated since OpenSSL 1.1.0.
810
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100811.. data:: OP_NO_TLSv1_2
812
813 Prevents a TLSv1.2 connection. This option is only applicable in conjunction
Christian Heimes598894f2016-09-05 23:19:05 +0200814 with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.2 as
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100815 the protocol version. Available only with openssl version 1.0.1+.
816
817 .. versionadded:: 3.4
818
Christian Heimes698dde12018-02-27 11:54:43 +0100819 .. deprecated:: 3.7
820 The option is deprecated since OpenSSL 1.1.0.
821
Christian Heimescb5b68a2017-09-07 18:07:00 -0700822.. data:: OP_NO_TLSv1_3
823
824 Prevents a TLSv1.3 connection. This option is only applicable in conjunction
825 with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.3 as
826 the protocol version. TLS 1.3 is available with OpenSSL 1.1.1 or later.
827 When Python has been compiled against an older version of OpenSSL, the
828 flag defaults to *0*.
829
830 .. versionadded:: 3.7
831
Christian Heimes698dde12018-02-27 11:54:43 +0100832 .. deprecated:: 3.7
833 The option is deprecated since OpenSSL 1.1.0. It was added to 2.7.15,
834 3.6.3 and 3.7.0 for backwards compatibility with OpenSSL 1.0.2.
835
Christian Heimes67c48012018-05-15 16:25:40 -0400836.. data:: OP_NO_RENEGOTIATION
837
838 Disable all renegotiation in TLSv1.2 and earlier. Do not send
839 HelloRequest messages, and ignore renegotiation requests via ClientHello.
840
841 This option is only available with OpenSSL 1.1.0h and later.
842
843 .. versionadded:: 3.7
844
Antoine Pitrou6db49442011-12-19 13:27:11 +0100845.. data:: OP_CIPHER_SERVER_PREFERENCE
846
847 Use the server's cipher ordering preference, rather than the client's.
848 This option has no effect on client sockets and SSLv2 server sockets.
849
850 .. versionadded:: 3.3
851
Antoine Pitrou0e576f12011-12-22 10:03:38 +0100852.. data:: OP_SINGLE_DH_USE
853
854 Prevents re-use of the same DH key for distinct SSL sessions. This
855 improves forward secrecy but requires more computational resources.
856 This option only applies to server sockets.
857
858 .. versionadded:: 3.3
859
Antoine Pitrou923df6f2011-12-19 17:16:51 +0100860.. data:: OP_SINGLE_ECDH_USE
861
Antoine Pitrou0e576f12011-12-22 10:03:38 +0100862 Prevents re-use of the same ECDH key for distinct SSL sessions. This
Antoine Pitrou923df6f2011-12-19 17:16:51 +0100863 improves forward secrecy but requires more computational resources.
864 This option only applies to server sockets.
865
866 .. versionadded:: 3.3
867
Christian Heimes05d9fe32018-02-27 08:55:39 +0100868.. data:: OP_ENABLE_MIDDLEBOX_COMPAT
869
870 Send dummy Change Cipher Spec (CCS) messages in TLS 1.3 handshake to make
871 a TLS 1.3 connection look more like a TLS 1.2 connection.
872
873 This option is only available with OpenSSL 1.1.1 and later.
874
875 .. versionadded:: 3.8
876
Antoine Pitrou8abdb8a2011-12-20 10:13:40 +0100877.. data:: OP_NO_COMPRESSION
878
879 Disable compression on the SSL channel. This is useful if the application
880 protocol supports its own compression scheme.
881
882 This option is only available with OpenSSL 1.0.0 and later.
883
884 .. versionadded:: 3.3
885
Christian Heimes3aeacad2016-09-10 00:19:35 +0200886.. class:: Options
887
888 :class:`enum.IntFlag` collection of OP_* constants.
889
Christian Heimes99a65702016-09-10 23:44:53 +0200890.. data:: OP_NO_TICKET
891
892 Prevent client side from requesting a session ticket.
893
Christian Heimes3aeacad2016-09-10 00:19:35 +0200894 .. versionadded:: 3.6
895
Benjamin Petersoncca27322015-01-23 16:35:37 -0500896.. data:: HAS_ALPN
897
898 Whether the OpenSSL library has built-in support for the *Application-Layer
899 Protocol Negotiation* TLS extension as described in :rfc:`7301`.
900
901 .. versionadded:: 3.5
902
Christian Heimes61d478c2018-01-27 15:51:38 +0100903.. data:: HAS_NEVER_CHECK_COMMON_NAME
904
905 Whether the OpenSSL library has built-in support not checking subject
906 common name and :attr:`SSLContext.hostname_checks_common_name` is
907 writeable.
908
909 .. versionadded:: 3.7
910
Antoine Pitrou501da612011-12-21 09:27:41 +0100911.. data:: HAS_ECDH
912
Christian Heimes698dde12018-02-27 11:54:43 +0100913 Whether the OpenSSL library has built-in support for the Elliptic Curve-based
Antoine Pitrou501da612011-12-21 09:27:41 +0100914 Diffie-Hellman key exchange. This should be true unless the feature was
915 explicitly disabled by the distributor.
916
917 .. versionadded:: 3.3
918
Antoine Pitroud5323212010-10-22 18:19:07 +0000919.. data:: HAS_SNI
920
921 Whether the OpenSSL library has built-in support for the *Server Name
Chandan Kumar63c2c8a2017-06-09 15:13:58 +0530922 Indication* extension (as defined in :rfc:`6066`).
Antoine Pitroud5323212010-10-22 18:19:07 +0000923
924 .. versionadded:: 3.2
925
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100926.. data:: HAS_NPN
927
Christian Heimes698dde12018-02-27 11:54:43 +0100928 Whether the OpenSSL library has built-in support for the *Next Protocol
Sanyam Khurana338cd832018-01-20 05:55:37 +0530929 Negotiation* as described in the `Application Layer Protocol
930 Negotiation <https://en.wikipedia.org/wiki/Application-Layer_Protocol_Negotiation>`_.
931 When true, you can use the :meth:`SSLContext.set_npn_protocols` method to advertise
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100932 which protocols you want to support.
933
934 .. versionadded:: 3.3
935
Christian Heimes698dde12018-02-27 11:54:43 +0100936.. data:: HAS_SSLv2
937
938 Whether the OpenSSL library has built-in support for the SSL 2.0 protocol.
939
940 .. versionadded:: 3.7
941
942.. data:: HAS_SSLv3
943
944 Whether the OpenSSL library has built-in support for the SSL 3.0 protocol.
945
946 .. versionadded:: 3.7
947
948.. data:: HAS_TLSv1
949
950 Whether the OpenSSL library has built-in support for the TLS 1.0 protocol.
951
952 .. versionadded:: 3.7
953
954.. data:: HAS_TLSv1_1
955
956 Whether the OpenSSL library has built-in support for the TLS 1.1 protocol.
957
958 .. versionadded:: 3.7
959
960.. data:: HAS_TLSv1_2
961
962 Whether the OpenSSL library has built-in support for the TLS 1.2 protocol.
963
964 .. versionadded:: 3.7
965
Christian Heimescb5b68a2017-09-07 18:07:00 -0700966.. data:: HAS_TLSv1_3
967
968 Whether the OpenSSL library has built-in support for the TLS 1.3 protocol.
969
970 .. versionadded:: 3.7
971
Antoine Pitroud6494802011-07-21 01:11:30 +0200972.. data:: CHANNEL_BINDING_TYPES
973
974 List of supported TLS channel binding types. Strings in this list
975 can be used as arguments to :meth:`SSLSocket.get_channel_binding`.
976
977 .. versionadded:: 3.3
978
Antoine Pitrou04f6a322010-04-05 21:40:07 +0000979.. data:: OPENSSL_VERSION
980
981 The version string of the OpenSSL library loaded by the interpreter::
982
983 >>> ssl.OPENSSL_VERSION
Alex Gaynor275104e2017-03-02 05:23:19 -0500984 'OpenSSL 1.0.2k 26 Jan 2017'
Antoine Pitrou04f6a322010-04-05 21:40:07 +0000985
Antoine Pitrou43a94c312010-04-05 21:44:48 +0000986 .. versionadded:: 3.2
Antoine Pitrou04f6a322010-04-05 21:40:07 +0000987
988.. data:: OPENSSL_VERSION_INFO
989
990 A tuple of five integers representing version information about the
991 OpenSSL library::
992
993 >>> ssl.OPENSSL_VERSION_INFO
Alex Gaynor275104e2017-03-02 05:23:19 -0500994 (1, 0, 2, 11, 15)
Antoine Pitrou04f6a322010-04-05 21:40:07 +0000995
Antoine Pitrou43a94c312010-04-05 21:44:48 +0000996 .. versionadded:: 3.2
Antoine Pitrou04f6a322010-04-05 21:40:07 +0000997
998.. data:: OPENSSL_VERSION_NUMBER
999
1000 The raw version number of the OpenSSL library, as a single integer::
1001
1002 >>> ssl.OPENSSL_VERSION_NUMBER
Alex Gaynor275104e2017-03-02 05:23:19 -05001003 268443839
Antoine Pitrou04f6a322010-04-05 21:40:07 +00001004 >>> hex(ssl.OPENSSL_VERSION_NUMBER)
Alex Gaynor275104e2017-03-02 05:23:19 -05001005 '0x100020bf'
Antoine Pitrou04f6a322010-04-05 21:40:07 +00001006
Antoine Pitrou43a94c312010-04-05 21:44:48 +00001007 .. versionadded:: 3.2
Antoine Pitrou04f6a322010-04-05 21:40:07 +00001008
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001009.. data:: ALERT_DESCRIPTION_HANDSHAKE_FAILURE
1010 ALERT_DESCRIPTION_INTERNAL_ERROR
1011 ALERT_DESCRIPTION_*
1012
1013 Alert Descriptions from :rfc:`5246` and others. The `IANA TLS Alert Registry
Serhiy Storchaka6dff0202016-05-07 10:49:07 +03001014 <https://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-6>`_
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001015 contains this list and references to the RFCs where their meaning is defined.
1016
1017 Used as the return value of the callback function in
1018 :meth:`SSLContext.set_servername_callback`.
1019
1020 .. versionadded:: 3.4
1021
Christian Heimes3aeacad2016-09-10 00:19:35 +02001022.. class:: AlertDescription
1023
1024 :class:`enum.IntEnum` collection of ALERT_DESCRIPTION_* constants.
1025
1026 .. versionadded:: 3.6
1027
Christian Heimes72d28502013-11-23 13:56:58 +01001028.. data:: Purpose.SERVER_AUTH
1029
Antoine Pitrou5bef4102013-11-23 16:16:29 +01001030 Option for :func:`create_default_context` and
1031 :meth:`SSLContext.load_default_certs`. This value indicates that the
1032 context may be used to authenticate Web servers (therefore, it will
1033 be used to create client-side sockets).
Christian Heimes72d28502013-11-23 13:56:58 +01001034
1035 .. versionadded:: 3.4
1036
Christian Heimes6b2ff982013-11-23 14:42:01 +01001037.. data:: Purpose.CLIENT_AUTH
Christian Heimes72d28502013-11-23 13:56:58 +01001038
Antoine Pitrou5bef4102013-11-23 16:16:29 +01001039 Option for :func:`create_default_context` and
1040 :meth:`SSLContext.load_default_certs`. This value indicates that the
1041 context may be used to authenticate Web clients (therefore, it will
1042 be used to create server-side sockets).
Christian Heimes72d28502013-11-23 13:56:58 +01001043
1044 .. versionadded:: 3.4
1045
Christian Heimes3aeacad2016-09-10 00:19:35 +02001046.. class:: SSLErrorNumber
1047
1048 :class:`enum.IntEnum` collection of SSL_ERROR_* constants.
1049
1050 .. versionadded:: 3.6
1051
Christian Heimes698dde12018-02-27 11:54:43 +01001052.. class:: TLSVersion
1053
1054 :class:`enum.IntEnum` collection of SSL and TLS versions for
1055 :attr:`SSLContext.maximum_version` and :attr:`SSLContext.minimum_version`.
1056
1057 .. versionadded:: 3.7
1058
1059.. attribute:: TLSVersion.MINIMUM_SUPPORTED
1060.. attribute:: TLSVersion.MAXIMUM_SUPPORTED
1061
1062 The minimum or maximum supported SSL or TLS version. These are magic
1063 constants. Their values don't reflect the lowest and highest available
1064 TLS/SSL versions.
1065
1066.. attribute:: TLSVersion.SSLv3
1067.. attribute:: TLSVersion.TLSv1
1068.. attribute:: TLSVersion.TLSv1_1
1069.. attribute:: TLSVersion.TLSv1_2
1070.. attribute:: TLSVersion.TLSv1_3
1071
1072 SSL 3.0 to TLS 1.3.
Thomas Woutersed03b412007-08-28 21:37:11 +00001073
Christian Heimesc7f70692019-05-31 11:44:05 +02001074
Antoine Pitrou152efa22010-05-16 18:19:27 +00001075SSL Sockets
1076-----------
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001077
Victor Stinner3c3d3c72014-10-10 12:06:51 +02001078.. class:: SSLSocket(socket.socket)
Antoine Pitrou792ff3e2010-09-19 13:19:21 +00001079
Victor Stinner3c3d3c72014-10-10 12:06:51 +02001080 SSL sockets provide the following methods of :ref:`socket-objects`:
Zachary Wareba9fb0d2014-06-11 15:02:25 -05001081
Victor Stinner3c3d3c72014-10-10 12:06:51 +02001082 - :meth:`~socket.socket.accept()`
1083 - :meth:`~socket.socket.bind()`
1084 - :meth:`~socket.socket.close()`
1085 - :meth:`~socket.socket.connect()`
1086 - :meth:`~socket.socket.detach()`
1087 - :meth:`~socket.socket.fileno()`
1088 - :meth:`~socket.socket.getpeername()`, :meth:`~socket.socket.getsockname()`
1089 - :meth:`~socket.socket.getsockopt()`, :meth:`~socket.socket.setsockopt()`
1090 - :meth:`~socket.socket.gettimeout()`, :meth:`~socket.socket.settimeout()`,
1091 :meth:`~socket.socket.setblocking()`
1092 - :meth:`~socket.socket.listen()`
1093 - :meth:`~socket.socket.makefile()`
1094 - :meth:`~socket.socket.recv()`, :meth:`~socket.socket.recv_into()`
1095 (but passing a non-zero ``flags`` argument is not allowed)
1096 - :meth:`~socket.socket.send()`, :meth:`~socket.socket.sendall()` (with
1097 the same limitation)
Victor Stinner92127a52014-10-10 12:43:17 +02001098 - :meth:`~socket.socket.sendfile()` (but :mod:`os.sendfile` will be used
1099 for plain-text sockets only, else :meth:`~socket.socket.send()` will be used)
Victor Stinner3c3d3c72014-10-10 12:06:51 +02001100 - :meth:`~socket.socket.shutdown()`
Zachary Wareba9fb0d2014-06-11 15:02:25 -05001101
Victor Stinner3c3d3c72014-10-10 12:06:51 +02001102 However, since the SSL (and TLS) protocol has its own framing atop
1103 of TCP, the SSL sockets abstraction can, in certain respects, diverge from
1104 the specification of normal, OS-level sockets. See especially the
1105 :ref:`notes on non-blocking sockets <ssl-nonblocking>`.
Antoine Pitroue1f2f302010-09-19 13:56:11 +00001106
Christian Heimes9d50ab52018-02-27 10:17:30 +01001107 Instances of :class:`SSLSocket` must be created using the
Alex Gaynor1cf2a802017-02-28 22:26:56 -05001108 :meth:`SSLContext.wrap_socket` method.
Victor Stinnerd28fe8c2014-10-10 12:07:19 +02001109
Victor Stinner92127a52014-10-10 12:43:17 +02001110 .. versionchanged:: 3.5
1111 The :meth:`sendfile` method was added.
1112
Victor Stinner14690702015-04-06 22:46:13 +02001113 .. versionchanged:: 3.5
1114 The :meth:`shutdown` does not reset the socket timeout each time bytes
1115 are received or sent. The socket timeout is now to maximum total duration
1116 of the shutdown.
1117
Christian Heimesd0486372016-09-10 23:23:33 +02001118 .. deprecated:: 3.6
1119 It is deprecated to create a :class:`SSLSocket` instance directly, use
1120 :meth:`SSLContext.wrap_socket` to wrap a socket.
1121
Christian Heimes9d50ab52018-02-27 10:17:30 +01001122 .. versionchanged:: 3.7
1123 :class:`SSLSocket` instances must to created with
1124 :meth:`~SSLContext.wrap_socket`. In earlier versions, it was possible
1125 to create instances directly. This was never documented or officially
1126 supported.
Antoine Pitrou6f5dcb12011-07-11 01:35:48 +02001127
1128SSL sockets also have the following additional methods and attributes:
Antoine Pitrou792ff3e2010-09-19 13:19:21 +00001129
Martin Panterf6b1d662016-03-28 00:22:09 +00001130.. method:: SSLSocket.read(len=1024, buffer=None)
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001131
1132 Read up to *len* bytes of data from the SSL socket and return the result as
1133 a ``bytes`` instance. If *buffer* is specified, then read into the buffer
1134 instead, and return the number of bytes read.
1135
Victor Stinner41f92c22014-10-10 12:05:56 +02001136 Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket is
Victor Stinnercfb2a0a2014-10-10 12:45:10 +02001137 :ref:`non-blocking <ssl-nonblocking>` and the read would block.
Victor Stinner41f92c22014-10-10 12:05:56 +02001138
1139 As at any time a re-negotiation is possible, a call to :meth:`read` can also
1140 cause write operations.
1141
Victor Stinner14690702015-04-06 22:46:13 +02001142 .. versionchanged:: 3.5
1143 The socket timeout is no more reset each time bytes are received or sent.
1144 The socket timeout is now to maximum total duration to read up to *len*
1145 bytes.
1146
Christian Heimesd0486372016-09-10 23:23:33 +02001147 .. deprecated:: 3.6
1148 Use :meth:`~SSLSocket.recv` instead of :meth:`~SSLSocket.read`.
1149
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001150.. method:: SSLSocket.write(buf)
1151
1152 Write *buf* to the SSL socket and return the number of bytes written. The
1153 *buf* argument must be an object supporting the buffer interface.
1154
Victor Stinner41f92c22014-10-10 12:05:56 +02001155 Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket is
Victor Stinnercfb2a0a2014-10-10 12:45:10 +02001156 :ref:`non-blocking <ssl-nonblocking>` and the write would block.
Victor Stinner41f92c22014-10-10 12:05:56 +02001157
1158 As at any time a re-negotiation is possible, a call to :meth:`write` can
1159 also cause read operations.
1160
Victor Stinner14690702015-04-06 22:46:13 +02001161 .. versionchanged:: 3.5
1162 The socket timeout is no more reset each time bytes are received or sent.
1163 The socket timeout is now to maximum total duration to write *buf*.
1164
Christian Heimesd0486372016-09-10 23:23:33 +02001165 .. deprecated:: 3.6
1166 Use :meth:`~SSLSocket.send` instead of :meth:`~SSLSocket.write`.
1167
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001168.. note::
1169
1170 The :meth:`~SSLSocket.read` and :meth:`~SSLSocket.write` methods are the
1171 low-level methods that read and write unencrypted, application-level data
Martin Panter1f1177d2015-10-31 11:48:53 +00001172 and decrypt/encrypt it to encrypted, wire-level data. These methods
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001173 require an active SSL connection, i.e. the handshake was completed and
1174 :meth:`SSLSocket.unwrap` was not called.
1175
1176 Normally you should use the socket API methods like
1177 :meth:`~socket.socket.recv` and :meth:`~socket.socket.send` instead of these
1178 methods.
1179
Bill Janssen48dc27c2007-12-05 03:38:10 +00001180.. method:: SSLSocket.do_handshake()
1181
Antoine Pitroub3593ca2011-07-11 01:39:19 +02001182 Perform the SSL setup handshake.
Bill Janssen48dc27c2007-12-05 03:38:10 +00001183
Christian Heimes1aa9a752013-12-02 02:41:19 +01001184 .. versionchanged:: 3.4
Zachary Ware88a19772014-07-25 13:30:50 -05001185 The handshake method also performs :func:`match_hostname` when the
Christian Heimes1aa9a752013-12-02 02:41:19 +01001186 :attr:`~SSLContext.check_hostname` attribute of the socket's
1187 :attr:`~SSLSocket.context` is true.
1188
Victor Stinner14690702015-04-06 22:46:13 +02001189 .. versionchanged:: 3.5
1190 The socket timeout is no more reset each time bytes are received or sent.
1191 The socket timeout is now to maximum total duration of the handshake.
1192
Christian Heimes61d478c2018-01-27 15:51:38 +01001193 .. versionchanged:: 3.7
1194 Hostname or IP address is matched by OpenSSL during handshake. The
1195 function :func:`match_hostname` is no longer used. In case OpenSSL
1196 refuses a hostname or IP address, the handshake is aborted early and
1197 a TLS alert message is send to the peer.
1198
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001199.. method:: SSLSocket.getpeercert(binary_form=False)
1200
Georg Brandl7f01a132009-09-16 15:58:14 +00001201 If there is no certificate for the peer on the other end of the connection,
Antoine Pitrou20b85552013-09-29 19:50:53 +02001202 return ``None``. If the SSL handshake hasn't been done yet, raise
1203 :exc:`ValueError`.
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001204
Antoine Pitroud34941a2013-04-16 20:27:17 +02001205 If the ``binary_form`` parameter is :const:`False`, and a certificate was
Georg Brandl7f01a132009-09-16 15:58:14 +00001206 received from the peer, this method returns a :class:`dict` instance. If the
1207 certificate was not validated, the dict is empty. If the certificate was
Antoine Pitroub7c6c812012-08-16 22:14:43 +02001208 validated, it returns a dict with several keys, amongst them ``subject``
1209 (the principal for which the certificate was issued) and ``issuer``
1210 (the principal issuing the certificate). If a certificate contains an
1211 instance of the *Subject Alternative Name* extension (see :rfc:`3280`),
1212 there will also be a ``subjectAltName`` key in the dictionary.
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001213
Antoine Pitroub7c6c812012-08-16 22:14:43 +02001214 The ``subject`` and ``issuer`` fields are tuples containing the sequence
1215 of relative distinguished names (RDNs) given in the certificate's data
1216 structure for the respective fields, and each RDN is a sequence of
1217 name-value pairs. Here is a real-world example::
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001218
Antoine Pitroub7c6c812012-08-16 22:14:43 +02001219 {'issuer': ((('countryName', 'IL'),),
1220 (('organizationName', 'StartCom Ltd.'),),
1221 (('organizationalUnitName',
1222 'Secure Digital Certificate Signing'),),
1223 (('commonName',
1224 'StartCom Class 2 Primary Intermediate Server CA'),)),
1225 'notAfter': 'Nov 22 08:15:19 2013 GMT',
1226 'notBefore': 'Nov 21 03:09:52 2011 GMT',
1227 'serialNumber': '95F0',
1228 'subject': ((('description', '571208-SLe257oHY9fVQ07Z'),),
1229 (('countryName', 'US'),),
1230 (('stateOrProvinceName', 'California'),),
1231 (('localityName', 'San Francisco'),),
1232 (('organizationName', 'Electronic Frontier Foundation, Inc.'),),
1233 (('commonName', '*.eff.org'),),
1234 (('emailAddress', 'hostmaster@eff.org'),)),
1235 'subjectAltName': (('DNS', '*.eff.org'), ('DNS', 'eff.org')),
1236 'version': 3}
1237
1238 .. note::
Larry Hastings3732ed22014-03-15 21:13:56 -07001239
Antoine Pitroub7c6c812012-08-16 22:14:43 +02001240 To validate a certificate for a particular service, you can use the
1241 :func:`match_hostname` function.
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001242
Georg Brandl7f01a132009-09-16 15:58:14 +00001243 If the ``binary_form`` parameter is :const:`True`, and a certificate was
1244 provided, this method returns the DER-encoded form of the entire certificate
1245 as a sequence of bytes, or :const:`None` if the peer did not provide a
Antoine Pitroud34941a2013-04-16 20:27:17 +02001246 certificate. Whether the peer provides a certificate depends on the SSL
1247 socket's role:
1248
1249 * for a client SSL socket, the server will always provide a certificate,
1250 regardless of whether validation was required;
1251
1252 * for a server SSL socket, the client will only provide a certificate
1253 when requested by the server; therefore :meth:`getpeercert` will return
1254 :const:`None` if you used :const:`CERT_NONE` (rather than
1255 :const:`CERT_OPTIONAL` or :const:`CERT_REQUIRED`).
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001256
Antoine Pitroufb046912010-11-09 20:21:19 +00001257 .. versionchanged:: 3.2
1258 The returned dictionary includes additional items such as ``issuer``
1259 and ``notBefore``.
1260
Antoine Pitrou20b85552013-09-29 19:50:53 +02001261 .. versionchanged:: 3.4
1262 :exc:`ValueError` is raised when the handshake isn't done.
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001263 The returned dictionary includes additional X509v3 extension items
Larry Hastings3732ed22014-03-15 21:13:56 -07001264 such as ``crlDistributionPoints``, ``caIssuers`` and ``OCSP`` URIs.
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001265
Christian Heimes2b7de662019-12-07 17:59:36 +01001266 .. versionchanged:: 3.9
1267 IPv6 address strings no longer have a trailing new line.
1268
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001269.. method:: SSLSocket.cipher()
1270
Georg Brandl7f01a132009-09-16 15:58:14 +00001271 Returns a three-value tuple containing the name of the cipher being used, the
1272 version of the SSL protocol that defines its use, and the number of secret
1273 bits being used. If no connection has been established, returns ``None``.
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001274
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001275.. method:: SSLSocket.shared_ciphers()
1276
1277 Return the list of ciphers shared by the client during the handshake. Each
1278 entry of the returned list is a three-value tuple containing the name of the
1279 cipher, the version of the SSL protocol that defines its use, and the number
1280 of secret bits the cipher uses. :meth:`~SSLSocket.shared_ciphers` returns
1281 ``None`` if no connection has been established or the socket is a client
1282 socket.
1283
1284 .. versionadded:: 3.5
1285
Antoine Pitrou8abdb8a2011-12-20 10:13:40 +01001286.. method:: SSLSocket.compression()
1287
1288 Return the compression algorithm being used as a string, or ``None``
1289 if the connection isn't compressed.
1290
1291 If the higher-level protocol supports its own compression mechanism,
1292 you can use :data:`OP_NO_COMPRESSION` to disable SSL-level compression.
1293
1294 .. versionadded:: 3.3
1295
Antoine Pitroud6494802011-07-21 01:11:30 +02001296.. method:: SSLSocket.get_channel_binding(cb_type="tls-unique")
1297
1298 Get channel binding data for current connection, as a bytes object. Returns
1299 ``None`` if not connected or the handshake has not been completed.
1300
1301 The *cb_type* parameter allow selection of the desired channel binding
1302 type. Valid channel binding types are listed in the
1303 :data:`CHANNEL_BINDING_TYPES` list. Currently only the 'tls-unique' channel
1304 binding, defined by :rfc:`5929`, is supported. :exc:`ValueError` will be
1305 raised if an unsupported channel binding type is requested.
1306
1307 .. versionadded:: 3.3
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001308
Benjamin Petersoncca27322015-01-23 16:35:37 -05001309.. method:: SSLSocket.selected_alpn_protocol()
1310
1311 Return the protocol that was selected during the TLS handshake. If
1312 :meth:`SSLContext.set_alpn_protocols` was not called, if the other party does
Benjamin Peterson88615022015-01-23 17:30:26 -05001313 not support ALPN, if this socket does not support any of the client's
1314 proposed protocols, or if the handshake has not happened yet, ``None`` is
Benjamin Petersoncca27322015-01-23 16:35:37 -05001315 returned.
1316
1317 .. versionadded:: 3.5
1318
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001319.. method:: SSLSocket.selected_npn_protocol()
1320
Benjamin Petersoncca27322015-01-23 16:35:37 -05001321 Return the higher-level protocol that was selected during the TLS/SSL
Antoine Pitrou47e40422014-09-04 21:00:10 +02001322 handshake. If :meth:`SSLContext.set_npn_protocols` was not called, or
1323 if the other party does not support NPN, or if the handshake has not yet
1324 happened, this will return ``None``.
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001325
1326 .. versionadded:: 3.3
1327
Benjamin Peterson4aeec042008-08-19 21:42:13 +00001328.. method:: SSLSocket.unwrap()
1329
Georg Brandl7f01a132009-09-16 15:58:14 +00001330 Performs the SSL shutdown handshake, which removes the TLS layer from the
1331 underlying socket, and returns the underlying socket object. This can be
1332 used to go from encrypted operation over a connection to unencrypted. The
1333 returned socket should always be used for further communication with the
1334 other side of the connection, rather than the original socket.
Benjamin Peterson4aeec042008-08-19 21:42:13 +00001335
Christian Heimes9fb051f2018-09-23 08:32:31 +02001336.. method:: SSLSocket.verify_client_post_handshake()
1337
1338 Requests post-handshake authentication (PHA) from a TLS 1.3 client. PHA
1339 can only be initiated for a TLS 1.3 connection from a server-side socket,
1340 after the initial TLS handshake and with PHA enabled on both sides, see
1341 :attr:`SSLContext.post_handshake_auth`.
1342
1343 The method does not perform a cert exchange immediately. The server-side
1344 sends a CertificateRequest during the next write event and expects the
1345 client to respond with a certificate on the next read event.
1346
1347 If any precondition isn't met (e.g. not TLS 1.3, PHA not enabled), an
1348 :exc:`SSLError` is raised.
1349
Christian Heimes9fb051f2018-09-23 08:32:31 +02001350 .. note::
1351 Only available with OpenSSL 1.1.1 and TLS 1.3 enabled. Without TLS 1.3
1352 support, the method raises :exc:`NotImplementedError`.
1353
Zhiming Wangae2ea332019-03-01 01:15:04 +08001354 .. versionadded:: 3.8
1355
Antoine Pitrou47e40422014-09-04 21:00:10 +02001356.. method:: SSLSocket.version()
1357
1358 Return the actual SSL protocol version negotiated by the connection
1359 as a string, or ``None`` is no secure connection is established.
1360 As of this writing, possible return values include ``"SSLv2"``,
1361 ``"SSLv3"``, ``"TLSv1"``, ``"TLSv1.1"`` and ``"TLSv1.2"``.
1362 Recent OpenSSL versions may define more return values.
1363
1364 .. versionadded:: 3.5
1365
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001366.. method:: SSLSocket.pending()
1367
1368 Returns the number of already decrypted bytes available for read, pending on
1369 the connection.
1370
Antoine Pitrouec883db2010-05-24 21:20:20 +00001371.. attribute:: SSLSocket.context
1372
1373 The :class:`SSLContext` object this SSL socket is tied to. If the SSL
Christian Heimes90f05a52018-02-27 09:21:34 +01001374 socket was created using the deprecated :func:`wrap_socket` function
Antoine Pitrouec883db2010-05-24 21:20:20 +00001375 (rather than :meth:`SSLContext.wrap_socket`), this is a custom context
1376 object created for this SSL socket.
1377
1378 .. versionadded:: 3.2
1379
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001380.. attribute:: SSLSocket.server_side
1381
1382 A boolean which is ``True`` for server-side sockets and ``False`` for
1383 client-side sockets.
1384
Victor Stinner41f92c22014-10-10 12:05:56 +02001385 .. versionadded:: 3.2
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001386
1387.. attribute:: SSLSocket.server_hostname
1388
Victor Stinner41f92c22014-10-10 12:05:56 +02001389 Hostname of the server: :class:`str` type, or ``None`` for server-side
1390 socket or if the hostname was not specified in the constructor.
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001391
Victor Stinner41f92c22014-10-10 12:05:56 +02001392 .. versionadded:: 3.2
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001393
Christian Heimes11a14932018-02-24 02:35:08 +01001394 .. versionchanged:: 3.7
1395 The attribute is now always ASCII text. When ``server_hostname`` is
1396 an internationalized domain name (IDN), this attribute now stores the
1397 A-label form (``"xn--pythn-mua.org"``), rather than the U-label form
1398 (``"pythön.org"``).
1399
Christian Heimes99a65702016-09-10 23:44:53 +02001400.. attribute:: SSLSocket.session
1401
1402 The :class:`SSLSession` for this SSL connection. The session is available
1403 for client and server side sockets after the TLS handshake has been
1404 performed. For client sockets the session can be set before
1405 :meth:`~SSLSocket.do_handshake` has been called to reuse a session.
1406
1407 .. versionadded:: 3.6
1408
1409.. attribute:: SSLSocket.session_reused
1410
1411 .. versionadded:: 3.6
1412
Antoine Pitrouec883db2010-05-24 21:20:20 +00001413
Antoine Pitrou152efa22010-05-16 18:19:27 +00001414SSL Contexts
1415------------
1416
Antoine Pitroucafaad42010-05-24 15:58:43 +00001417.. versionadded:: 3.2
1418
Antoine Pitroub0182c82010-10-12 20:09:02 +00001419An SSL context holds various data longer-lived than single SSL connections,
1420such as SSL configuration options, certificate(s) and private key(s).
1421It also manages a cache of SSL sessions for server-side sockets, in order
1422to speed up repeated connections from the same clients.
1423
Christian Heimes598894f2016-09-05 23:19:05 +02001424.. class:: SSLContext(protocol=PROTOCOL_TLS)
Antoine Pitrou152efa22010-05-16 18:19:27 +00001425
Christian Heimes598894f2016-09-05 23:19:05 +02001426 Create a new SSL context. You may pass *protocol* which must be one
Christian Heimes90f05a52018-02-27 09:21:34 +01001427 of the ``PROTOCOL_*`` constants defined in this module. The parameter
1428 specifies which version of the SSL protocol to use. Typically, the
1429 server chooses a particular protocol version, and the client must adapt
1430 to the server's choice. Most of the versions are not interoperable
1431 with the other versions. If not specified, the default is
1432 :data:`PROTOCOL_TLS`; it provides the most compatibility with other
1433 versions.
1434
1435 Here's a table showing which versions in a client (down the side) can connect
1436 to which versions in a server (along the top):
1437
1438 .. table::
1439
1440 ======================== ============ ============ ============= ========= =========== ===========
1441 *client* / **server** **SSLv2** **SSLv3** **TLS** [3]_ **TLSv1** **TLSv1.1** **TLSv1.2**
1442 ------------------------ ------------ ------------ ------------- --------- ----------- -----------
1443 *SSLv2* yes no no [1]_ no no no
1444 *SSLv3* no yes no [2]_ no no no
1445 *TLS* (*SSLv23*) [3]_ no [1]_ no [2]_ yes yes yes yes
1446 *TLSv1* no no yes yes no no
1447 *TLSv1.1* no no yes no yes no
1448 *TLSv1.2* no no yes no no yes
1449 ======================== ============ ============ ============= ========= =========== ===========
1450
1451 .. rubric:: Footnotes
1452 .. [1] :class:`SSLContext` disables SSLv2 with :data:`OP_NO_SSLv2` by default.
1453 .. [2] :class:`SSLContext` disables SSLv3 with :data:`OP_NO_SSLv3` by default.
1454 .. [3] TLS 1.3 protocol will be available with :data:`PROTOCOL_TLS` in
1455 OpenSSL >= 1.1.1. There is no dedicated PROTOCOL constant for just
1456 TLS 1.3.
Antoine Pitrou5bef4102013-11-23 16:16:29 +01001457
1458 .. seealso::
1459 :func:`create_default_context` lets the :mod:`ssl` module choose
1460 security settings for a given purpose.
Antoine Pitroub0182c82010-10-12 20:09:02 +00001461
Christian Heimes01113fa2016-09-05 23:23:24 +02001462 .. versionchanged:: 3.6
Christian Heimes598894f2016-09-05 23:19:05 +02001463
Christian Heimes358cfd42016-09-10 22:43:48 +02001464 The context is created with secure default values. The options
1465 :data:`OP_NO_COMPRESSION`, :data:`OP_CIPHER_SERVER_PREFERENCE`,
1466 :data:`OP_SINGLE_DH_USE`, :data:`OP_SINGLE_ECDH_USE`,
1467 :data:`OP_NO_SSLv2` (except for :data:`PROTOCOL_SSLv2`),
1468 and :data:`OP_NO_SSLv3` (except for :data:`PROTOCOL_SSLv3`) are
1469 set by default. The initial cipher suite list contains only ``HIGH``
1470 ciphers, no ``NULL`` ciphers and no ``MD5`` ciphers (except for
1471 :data:`PROTOCOL_SSLv2`).
Christian Heimes598894f2016-09-05 23:19:05 +02001472
Antoine Pitrou152efa22010-05-16 18:19:27 +00001473
1474:class:`SSLContext` objects have the following methods and attributes:
1475
Christian Heimes9a5395a2013-06-17 15:44:12 +02001476.. method:: SSLContext.cert_store_stats()
1477
1478 Get statistics about quantities of loaded X.509 certificates, count of
1479 X.509 certificates flagged as CA certificates and certificate revocation
1480 lists as dictionary.
1481
1482 Example for a context with one CA cert and one other cert::
1483
1484 >>> context.cert_store_stats()
1485 {'crl': 0, 'x509_ca': 1, 'x509': 2}
1486
1487 .. versionadded:: 3.4
1488
Christian Heimesefff7062013-11-21 03:35:02 +01001489
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02001490.. method:: SSLContext.load_cert_chain(certfile, keyfile=None, password=None)
Antoine Pitrou152efa22010-05-16 18:19:27 +00001491
1492 Load a private key and the corresponding certificate. The *certfile*
1493 string must be the path to a single file in PEM format containing the
1494 certificate as well as any number of CA certificates needed to establish
1495 the certificate's authenticity. The *keyfile* string, if present, must
1496 point to a file containing the private key in. Otherwise the private
1497 key will be taken from *certfile* as well. See the discussion of
1498 :ref:`ssl-certificates` for more information on how the certificate
1499 is stored in the *certfile*.
1500
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02001501 The *password* argument may be a function to call to get the password for
1502 decrypting the private key. It will only be called if the private key is
1503 encrypted and a password is necessary. It will be called with no arguments,
1504 and it should return a string, bytes, or bytearray. If the return value is
1505 a string it will be encoded as UTF-8 before using it to decrypt the key.
1506 Alternatively a string, bytes, or bytearray value may be supplied directly
1507 as the *password* argument. It will be ignored if the private key is not
1508 encrypted and no password is needed.
1509
1510 If the *password* argument is not specified and a password is required,
1511 OpenSSL's built-in password prompting mechanism will be used to
1512 interactively prompt the user for a password.
1513
Antoine Pitrou152efa22010-05-16 18:19:27 +00001514 An :class:`SSLError` is raised if the private key doesn't
1515 match with the certificate.
1516
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02001517 .. versionchanged:: 3.3
1518 New optional argument *password*.
1519
Christian Heimes72d28502013-11-23 13:56:58 +01001520.. method:: SSLContext.load_default_certs(purpose=Purpose.SERVER_AUTH)
1521
1522 Load a set of default "certification authority" (CA) certificates from
1523 default locations. On Windows it loads CA certs from the ``CA`` and
1524 ``ROOT`` system stores. On other systems it calls
1525 :meth:`SSLContext.set_default_verify_paths`. In the future the method may
1526 load CA certificates from other locations, too.
1527
1528 The *purpose* flag specifies what kind of CA certificates are loaded. The
1529 default settings :data:`Purpose.SERVER_AUTH` loads certificates, that are
1530 flagged and trusted for TLS web server authentication (client side
Christian Heimes6b2ff982013-11-23 14:42:01 +01001531 sockets). :data:`Purpose.CLIENT_AUTH` loads CA certificates for client
Christian Heimes72d28502013-11-23 13:56:58 +01001532 certificate verification on the server side.
1533
1534 .. versionadded:: 3.4
1535
Christian Heimesefff7062013-11-21 03:35:02 +01001536.. method:: SSLContext.load_verify_locations(cafile=None, capath=None, cadata=None)
Antoine Pitrou152efa22010-05-16 18:19:27 +00001537
1538 Load a set of "certification authority" (CA) certificates used to validate
1539 other peers' certificates when :data:`verify_mode` is other than
1540 :data:`CERT_NONE`. At least one of *cafile* or *capath* must be specified.
1541
Christian Heimes22587792013-11-21 23:56:13 +01001542 This method can also load certification revocation lists (CRLs) in PEM or
Donald Stufft8b852f12014-05-20 12:58:38 -04001543 DER format. In order to make use of CRLs, :attr:`SSLContext.verify_flags`
Christian Heimes22587792013-11-21 23:56:13 +01001544 must be configured properly.
1545
Christian Heimes3e738f92013-06-09 18:07:16 +02001546 The *cafile* string, if present, is the path to a file of concatenated
Antoine Pitrou152efa22010-05-16 18:19:27 +00001547 CA certificates in PEM format. See the discussion of
1548 :ref:`ssl-certificates` for more information about how to arrange the
1549 certificates in this file.
1550
1551 The *capath* string, if present, is
1552 the path to a directory containing several CA certificates in PEM format,
1553 following an `OpenSSL specific layout
Sanyam Khurana338cd832018-01-20 05:55:37 +05301554 <https://www.openssl.org/docs/manmaster/man3/SSL_CTX_load_verify_locations.html>`_.
Antoine Pitrou152efa22010-05-16 18:19:27 +00001555
Christian Heimesefff7062013-11-21 03:35:02 +01001556 The *cadata* object, if present, is either an ASCII string of one or more
Serhiy Storchakab757c832014-12-05 22:25:22 +02001557 PEM-encoded certificates or a :term:`bytes-like object` of DER-encoded
Christian Heimesefff7062013-11-21 03:35:02 +01001558 certificates. Like with *capath* extra lines around PEM-encoded
1559 certificates are ignored but at least one certificate must be present.
1560
1561 .. versionchanged:: 3.4
1562 New optional argument *cadata*
1563
Christian Heimes9a5395a2013-06-17 15:44:12 +02001564.. method:: SSLContext.get_ca_certs(binary_form=False)
1565
1566 Get a list of loaded "certification authority" (CA) certificates. If the
1567 ``binary_form`` parameter is :const:`False` each list
1568 entry is a dict like the output of :meth:`SSLSocket.getpeercert`. Otherwise
1569 the method returns a list of DER-encoded certificates. The returned list
1570 does not contain certificates from *capath* unless a certificate was
1571 requested and loaded by a SSL connection.
1572
Antoine Pitrou97aa9532015-04-13 21:06:15 +02001573 .. note::
1574 Certificates in a capath directory aren't loaded unless they have
1575 been used at least once.
1576
Larry Hastingsd36fc432013-08-03 02:49:53 -07001577 .. versionadded:: 3.4
Christian Heimes9a5395a2013-06-17 15:44:12 +02001578
Christian Heimes25bfcd52016-09-06 00:04:45 +02001579.. method:: SSLContext.get_ciphers()
1580
1581 Get a list of enabled ciphers. The list is in order of cipher priority.
1582 See :meth:`SSLContext.set_ciphers`.
1583
1584 Example::
1585
1586 >>> ctx = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
1587 >>> ctx.set_ciphers('ECDHE+AESGCM:!ECDSA')
1588 >>> ctx.get_ciphers() # OpenSSL 1.0.x
1589 [{'alg_bits': 256,
1590 'description': 'ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=RSA '
1591 'Enc=AESGCM(256) Mac=AEAD',
1592 'id': 50380848,
1593 'name': 'ECDHE-RSA-AES256-GCM-SHA384',
1594 'protocol': 'TLSv1/SSLv3',
1595 'strength_bits': 256},
1596 {'alg_bits': 128,
1597 'description': 'ECDHE-RSA-AES128-GCM-SHA256 TLSv1.2 Kx=ECDH Au=RSA '
1598 'Enc=AESGCM(128) Mac=AEAD',
1599 'id': 50380847,
1600 'name': 'ECDHE-RSA-AES128-GCM-SHA256',
1601 'protocol': 'TLSv1/SSLv3',
1602 'strength_bits': 128}]
1603
1604 On OpenSSL 1.1 and newer the cipher dict contains additional fields::
Marco Buttu7b2491a2017-04-13 16:17:59 +02001605
Christian Heimes25bfcd52016-09-06 00:04:45 +02001606 >>> ctx.get_ciphers() # OpenSSL 1.1+
1607 [{'aead': True,
1608 'alg_bits': 256,
1609 'auth': 'auth-rsa',
1610 'description': 'ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=RSA '
1611 'Enc=AESGCM(256) Mac=AEAD',
1612 'digest': None,
1613 'id': 50380848,
1614 'kea': 'kx-ecdhe',
1615 'name': 'ECDHE-RSA-AES256-GCM-SHA384',
1616 'protocol': 'TLSv1.2',
1617 'strength_bits': 256,
1618 'symmetric': 'aes-256-gcm'},
1619 {'aead': True,
1620 'alg_bits': 128,
1621 'auth': 'auth-rsa',
1622 'description': 'ECDHE-RSA-AES128-GCM-SHA256 TLSv1.2 Kx=ECDH Au=RSA '
1623 'Enc=AESGCM(128) Mac=AEAD',
1624 'digest': None,
1625 'id': 50380847,
1626 'kea': 'kx-ecdhe',
1627 'name': 'ECDHE-RSA-AES128-GCM-SHA256',
1628 'protocol': 'TLSv1.2',
1629 'strength_bits': 128,
1630 'symmetric': 'aes-128-gcm'}]
1631
Cheryl Sabella2d6097d2018-10-12 10:55:20 -04001632 .. availability:: OpenSSL 1.0.2+.
Christian Heimes25bfcd52016-09-06 00:04:45 +02001633
1634 .. versionadded:: 3.6
1635
Antoine Pitrou664c2d12010-11-17 20:29:42 +00001636.. method:: SSLContext.set_default_verify_paths()
1637
1638 Load a set of default "certification authority" (CA) certificates from
1639 a filesystem path defined when building the OpenSSL library. Unfortunately,
1640 there's no easy way to know whether this method succeeds: no error is
1641 returned if no certificates are to be found. When the OpenSSL library is
1642 provided as part of the operating system, though, it is likely to be
1643 configured properly.
1644
Antoine Pitrou152efa22010-05-16 18:19:27 +00001645.. method:: SSLContext.set_ciphers(ciphers)
1646
1647 Set the available ciphers for sockets created with this context.
1648 It should be a string in the `OpenSSL cipher list format
Marcin Niemira9c5ba092018-07-08 00:24:20 +02001649 <https://www.openssl.org/docs/manmaster/man1/ciphers.html>`_.
Antoine Pitrou152efa22010-05-16 18:19:27 +00001650 If no cipher can be selected (because compile-time options or other
1651 configuration forbids use of all the specified ciphers), an
1652 :class:`SSLError` will be raised.
1653
1654 .. note::
1655 when connected, the :meth:`SSLSocket.cipher` method of SSL sockets will
1656 give the currently selected cipher.
1657
Christian Heimese8eb6cb2018-05-22 22:50:12 +02001658 OpenSSL 1.1.1 has TLS 1.3 cipher suites enabled by default. The suites
1659 cannot be disabled with :meth:`~SSLContext.set_ciphers`.
1660
Benjamin Petersoncca27322015-01-23 16:35:37 -05001661.. method:: SSLContext.set_alpn_protocols(protocols)
1662
1663 Specify which protocols the socket should advertise during the SSL/TLS
1664 handshake. It should be a list of ASCII strings, like ``['http/1.1',
1665 'spdy/2']``, ordered by preference. The selection of a protocol will happen
1666 during the handshake, and will play out according to :rfc:`7301`. After a
1667 successful handshake, the :meth:`SSLSocket.selected_alpn_protocol` method will
1668 return the agreed-upon protocol.
1669
1670 This method will raise :exc:`NotImplementedError` if :data:`HAS_ALPN` is
Serhiy Storchaka138ccbb2019-11-12 16:57:03 +02001671 ``False``.
Benjamin Petersoncca27322015-01-23 16:35:37 -05001672
Christian Heimes7b40cb72017-08-15 10:33:43 +02001673 OpenSSL 1.1.0 to 1.1.0e will abort the handshake and raise :exc:`SSLError`
1674 when both sides support ALPN but cannot agree on a protocol. 1.1.0f+
1675 behaves like 1.0.2, :meth:`SSLSocket.selected_alpn_protocol` returns None.
Christian Heimes598894f2016-09-05 23:19:05 +02001676
Benjamin Petersoncca27322015-01-23 16:35:37 -05001677 .. versionadded:: 3.5
1678
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001679.. method:: SSLContext.set_npn_protocols(protocols)
1680
R David Murrayc7f75792013-06-26 15:11:12 -04001681 Specify which protocols the socket should advertise during the SSL/TLS
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001682 handshake. It should be a list of strings, like ``['http/1.1', 'spdy/2']``,
1683 ordered by preference. The selection of a protocol will happen during the
Sanyam Khurana338cd832018-01-20 05:55:37 +05301684 handshake, and will play out according to the `Application Layer Protocol Negotiation
1685 <https://en.wikipedia.org/wiki/Application-Layer_Protocol_Negotiation>`_. After a
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001686 successful handshake, the :meth:`SSLSocket.selected_npn_protocol` method will
1687 return the agreed-upon protocol.
1688
1689 This method will raise :exc:`NotImplementedError` if :data:`HAS_NPN` is
Serhiy Storchaka138ccbb2019-11-12 16:57:03 +02001690 ``False``.
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001691
1692 .. versionadded:: 3.3
1693
Christian Heimes11a14932018-02-24 02:35:08 +01001694.. attribute:: SSLContext.sni_callback
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001695
1696 Register a callback function that will be called after the TLS Client Hello
1697 handshake message has been received by the SSL/TLS server when the TLS client
1698 specifies a server name indication. The server name indication mechanism
1699 is specified in :rfc:`6066` section 3 - Server Name Indication.
1700
Christian Heimes11a14932018-02-24 02:35:08 +01001701 Only one callback can be set per ``SSLContext``. If *sni_callback*
1702 is set to ``None`` then the callback is disabled. Calling this function a
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001703 subsequent time will disable the previously registered callback.
1704
Christian Heimes11a14932018-02-24 02:35:08 +01001705 The callback function will be called with three
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001706 arguments; the first being the :class:`ssl.SSLSocket`, the second is a string
1707 that represents the server name that the client is intending to communicate
Antoine Pitrou50b24d02013-04-11 20:48:42 +02001708 (or :const:`None` if the TLS Client Hello does not contain a server name)
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001709 and the third argument is the original :class:`SSLContext`. The server name
Christian Heimes11a14932018-02-24 02:35:08 +01001710 argument is text. For internationalized domain name, the server
1711 name is an IDN A-label (``"xn--pythn-mua.org"``).
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001712
1713 A typical use of this callback is to change the :class:`ssl.SSLSocket`'s
1714 :attr:`SSLSocket.context` attribute to a new object of type
1715 :class:`SSLContext` representing a certificate chain that matches the server
1716 name.
1717
1718 Due to the early negotiation phase of the TLS connection, only limited
1719 methods and attributes are usable like
Benjamin Petersoncca27322015-01-23 16:35:37 -05001720 :meth:`SSLSocket.selected_alpn_protocol` and :attr:`SSLSocket.context`.
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001721 :meth:`SSLSocket.getpeercert`, :meth:`SSLSocket.getpeercert`,
1722 :meth:`SSLSocket.cipher` and :meth:`SSLSocket.compress` methods require that
1723 the TLS connection has progressed beyond the TLS Client Hello and therefore
1724 will not contain return meaningful values nor can they be called safely.
1725
Christian Heimes11a14932018-02-24 02:35:08 +01001726 The *sni_callback* function must return ``None`` to allow the
Terry Jan Reedy8e7586b2013-03-11 18:38:13 -04001727 TLS negotiation to continue. If a TLS failure is required, a constant
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001728 :const:`ALERT_DESCRIPTION_* <ALERT_DESCRIPTION_INTERNAL_ERROR>` can be
1729 returned. Other return values will result in a TLS fatal error with
1730 :const:`ALERT_DESCRIPTION_INTERNAL_ERROR`.
1731
Christian Heimes11a14932018-02-24 02:35:08 +01001732 If an exception is raised from the *sni_callback* function the TLS
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001733 connection will terminate with a fatal TLS alert message
1734 :const:`ALERT_DESCRIPTION_HANDSHAKE_FAILURE`.
1735
1736 This method will raise :exc:`NotImplementedError` if the OpenSSL library
1737 had OPENSSL_NO_TLSEXT defined when it was built.
1738
Christian Heimes11a14932018-02-24 02:35:08 +01001739 .. versionadded:: 3.7
1740
1741.. attribute:: SSLContext.set_servername_callback(server_name_callback)
1742
1743 This is a legacy API retained for backwards compatibility. When possible,
1744 you should use :attr:`sni_callback` instead. The given *server_name_callback*
1745 is similar to *sni_callback*, except that when the server hostname is an
1746 IDN-encoded internationalized domain name, the *server_name_callback*
1747 receives a decoded U-label (``"pythön.org"``).
1748
1749 If there is an decoding error on the server name, the TLS connection will
1750 terminate with an :const:`ALERT_DESCRIPTION_INTERNAL_ERROR` fatal TLS
1751 alert message to the client.
1752
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001753 .. versionadded:: 3.4
1754
Antoine Pitrou0e576f12011-12-22 10:03:38 +01001755.. method:: SSLContext.load_dh_params(dhfile)
1756
Matt Eaton9cf8c422018-03-10 19:00:04 -06001757 Load the key generation parameters for Diffie-Hellman (DH) key exchange.
Antoine Pitrou0e576f12011-12-22 10:03:38 +01001758 Using DH key exchange improves forward secrecy at the expense of
1759 computational resources (both on the server and on the client).
1760 The *dhfile* parameter should be the path to a file containing DH
1761 parameters in PEM format.
1762
1763 This setting doesn't apply to client sockets. You can also use the
1764 :data:`OP_SINGLE_DH_USE` option to further improve security.
1765
1766 .. versionadded:: 3.3
1767
Antoine Pitrou923df6f2011-12-19 17:16:51 +01001768.. method:: SSLContext.set_ecdh_curve(curve_name)
1769
Antoine Pitrou0e576f12011-12-22 10:03:38 +01001770 Set the curve name for Elliptic Curve-based Diffie-Hellman (ECDH) key
1771 exchange. ECDH is significantly faster than regular DH while arguably
1772 as secure. The *curve_name* parameter should be a string describing
Antoine Pitrou923df6f2011-12-19 17:16:51 +01001773 a well-known elliptic curve, for example ``prime256v1`` for a widely
1774 supported curve.
1775
1776 This setting doesn't apply to client sockets. You can also use the
1777 :data:`OP_SINGLE_ECDH_USE` option to further improve security.
1778
Serhiy Storchaka4adf01c2016-10-19 18:30:05 +03001779 This method is not available if :data:`HAS_ECDH` is ``False``.
Antoine Pitrou501da612011-12-21 09:27:41 +01001780
Antoine Pitrou923df6f2011-12-19 17:16:51 +01001781 .. versionadded:: 3.3
1782
1783 .. seealso::
Sanyam Khurana1b4587a2017-12-06 22:09:33 +05301784 `SSL/TLS & Perfect Forward Secrecy <https://vincent.bernat.im/en/blog/2011-ssl-perfect-forward-secrecy>`_
Antoine Pitrou923df6f2011-12-19 17:16:51 +01001785 Vincent Bernat.
1786
Antoine Pitroud5323212010-10-22 18:19:07 +00001787.. method:: SSLContext.wrap_socket(sock, server_side=False, \
1788 do_handshake_on_connect=True, suppress_ragged_eofs=True, \
Christian Heimes99a65702016-09-10 23:44:53 +02001789 server_hostname=None, session=None)
Antoine Pitrou152efa22010-05-16 18:19:27 +00001790
Christian Heimes4df60f12017-09-15 20:26:05 +02001791 Wrap an existing Python socket *sock* and return an instance of
Christian Heimes90f05a52018-02-27 09:21:34 +01001792 :attr:`SSLContext.sslsocket_class` (default :class:`SSLSocket`). The
1793 returned SSL socket is tied to the context, its settings and certificates.
1794 *sock* must be a :data:`~socket.SOCK_STREAM` socket; other
1795 socket types are unsupported.
Antoine Pitrou3e86ba42013-12-28 17:26:33 +01001796
Christian Heimes90f05a52018-02-27 09:21:34 +01001797 The parameter ``server_side`` is a boolean which identifies whether
1798 server-side or client-side behavior is desired from this socket.
1799
1800 For client-side sockets, the context construction is lazy; if the
1801 underlying socket isn't connected yet, the context construction will be
1802 performed after :meth:`connect` is called on the socket. For
1803 server-side sockets, if the socket has no remote peer, it is assumed
1804 to be a listening socket, and the server-side SSL wrapping is
1805 automatically performed on client connections accepted via the
1806 :meth:`accept` method. The method may raise :exc:`SSLError`.
Antoine Pitrou152efa22010-05-16 18:19:27 +00001807
Antoine Pitroud5323212010-10-22 18:19:07 +00001808 On client connections, the optional parameter *server_hostname* specifies
1809 the hostname of the service which we are connecting to. This allows a
1810 single server to host multiple SSL-based services with distinct certificates,
Benjamin Peterson7243b572014-11-23 17:04:34 -06001811 quite similarly to HTTP virtual hosts. Specifying *server_hostname* will
1812 raise a :exc:`ValueError` if *server_side* is true.
1813
Christian Heimes90f05a52018-02-27 09:21:34 +01001814 The parameter ``do_handshake_on_connect`` specifies whether to do the SSL
1815 handshake automatically after doing a :meth:`socket.connect`, or whether the
1816 application program will call it explicitly, by invoking the
1817 :meth:`SSLSocket.do_handshake` method. Calling
1818 :meth:`SSLSocket.do_handshake` explicitly gives the program control over the
1819 blocking behavior of the socket I/O involved in the handshake.
1820
1821 The parameter ``suppress_ragged_eofs`` specifies how the
1822 :meth:`SSLSocket.recv` method should signal unexpected EOF from the other end
1823 of the connection. If specified as :const:`True` (the default), it returns a
1824 normal EOF (an empty bytes object) in response to unexpected EOF errors
1825 raised from the underlying socket; if :const:`False`, it will raise the
1826 exceptions back to the caller.
1827
Christian Heimes99a65702016-09-10 23:44:53 +02001828 *session*, see :attr:`~SSLSocket.session`.
1829
Benjamin Peterson7243b572014-11-23 17:04:34 -06001830 .. versionchanged:: 3.5
1831 Always allow a server_hostname to be passed, even if OpenSSL does not
1832 have SNI.
Antoine Pitroud5323212010-10-22 18:19:07 +00001833
Christian Heimes99a65702016-09-10 23:44:53 +02001834 .. versionchanged:: 3.6
1835 *session* argument was added.
1836
Christian Heimes4df60f12017-09-15 20:26:05 +02001837 .. versionchanged:: 3.7
1838 The method returns on instance of :attr:`SSLContext.sslsocket_class`
1839 instead of hard-coded :class:`SSLSocket`.
1840
1841.. attribute:: SSLContext.sslsocket_class
1842
Toshio Kuratomi7b3a0282019-05-06 15:28:14 -05001843 The return type of :meth:`SSLContext.wrap_socket`, defaults to
Christian Heimes4df60f12017-09-15 20:26:05 +02001844 :class:`SSLSocket`. The attribute can be overridden on instance of class
1845 in order to return a custom subclass of :class:`SSLSocket`.
1846
1847 .. versionadded:: 3.7
1848
Victor Stinner805b2622014-10-10 12:49:08 +02001849.. method:: SSLContext.wrap_bio(incoming, outgoing, server_side=False, \
Christian Heimes99a65702016-09-10 23:44:53 +02001850 server_hostname=None, session=None)
Victor Stinner805b2622014-10-10 12:49:08 +02001851
Christian Heimes4df60f12017-09-15 20:26:05 +02001852 Wrap the BIO objects *incoming* and *outgoing* and return an instance of
Toshio Kuratomi7b3a0282019-05-06 15:28:14 -05001853 :attr:`SSLContext.sslobject_class` (default :class:`SSLObject`). The SSL
Christian Heimes4df60f12017-09-15 20:26:05 +02001854 routines will read input data from the incoming BIO and write data to the
1855 outgoing BIO.
Victor Stinner805b2622014-10-10 12:49:08 +02001856
Christian Heimes99a65702016-09-10 23:44:53 +02001857 The *server_side*, *server_hostname* and *session* parameters have the
1858 same meaning as in :meth:`SSLContext.wrap_socket`.
1859
1860 .. versionchanged:: 3.6
1861 *session* argument was added.
Victor Stinner805b2622014-10-10 12:49:08 +02001862
Christian Heimes4df60f12017-09-15 20:26:05 +02001863 .. versionchanged:: 3.7
1864 The method returns on instance of :attr:`SSLContext.sslobject_class`
1865 instead of hard-coded :class:`SSLObject`.
1866
1867.. attribute:: SSLContext.sslobject_class
1868
1869 The return type of :meth:`SSLContext.wrap_bio`, defaults to
1870 :class:`SSLObject`. The attribute can be overridden on instance of class
1871 in order to return a custom subclass of :class:`SSLObject`.
1872
1873 .. versionadded:: 3.7
1874
Antoine Pitroub0182c82010-10-12 20:09:02 +00001875.. method:: SSLContext.session_stats()
1876
1877 Get statistics about the SSL sessions created or managed by this context.
Sanyam Khurana338cd832018-01-20 05:55:37 +05301878 A dictionary is returned which maps the names of each `piece of information <https://www.openssl.org/docs/man1.1.0/ssl/SSL_CTX_sess_number.html>`_ to their
Antoine Pitroub0182c82010-10-12 20:09:02 +00001879 numeric values. For example, here is the total number of hits and misses
1880 in the session cache since the context was created::
1881
1882 >>> stats = context.session_stats()
1883 >>> stats['hits'], stats['misses']
1884 (0, 0)
1885
Christian Heimes1aa9a752013-12-02 02:41:19 +01001886.. attribute:: SSLContext.check_hostname
1887
Ville Skyttä9798cef2021-03-27 16:20:11 +02001888 Whether to match the peer cert's hostname in
Christian Heimes1aa9a752013-12-02 02:41:19 +01001889 :meth:`SSLSocket.do_handshake`. The context's
1890 :attr:`~SSLContext.verify_mode` must be set to :data:`CERT_OPTIONAL` or
1891 :data:`CERT_REQUIRED`, and you must pass *server_hostname* to
Christian Heimese82c0342017-09-15 20:29:57 +02001892 :meth:`~SSLContext.wrap_socket` in order to match the hostname. Enabling
1893 hostname checking automatically sets :attr:`~SSLContext.verify_mode` from
1894 :data:`CERT_NONE` to :data:`CERT_REQUIRED`. It cannot be set back to
Christian Heimes894d0f72019-09-12 13:10:05 +02001895 :data:`CERT_NONE` as long as hostname checking is enabled. The
1896 :data:`PROTOCOL_TLS_CLIENT` protocol enables hostname checking by default.
1897 With other protocols, hostname checking must be enabled explicitly.
Christian Heimes1aa9a752013-12-02 02:41:19 +01001898
1899 Example::
1900
1901 import socket, ssl
1902
Christian Heimes894d0f72019-09-12 13:10:05 +02001903 context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
Christian Heimes1aa9a752013-12-02 02:41:19 +01001904 context.verify_mode = ssl.CERT_REQUIRED
1905 context.check_hostname = True
1906 context.load_default_certs()
1907
1908 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Berker Peksag38bf87c2014-07-17 05:00:36 +03001909 ssl_sock = context.wrap_socket(s, server_hostname='www.verisign.com')
1910 ssl_sock.connect(('www.verisign.com', 443))
Christian Heimes1aa9a752013-12-02 02:41:19 +01001911
1912 .. versionadded:: 3.4
1913
Christian Heimese82c0342017-09-15 20:29:57 +02001914 .. versionchanged:: 3.7
1915
1916 :attr:`~SSLContext.verify_mode` is now automatically changed
1917 to :data:`CERT_REQUIRED` when hostname checking is enabled and
1918 :attr:`~SSLContext.verify_mode` is :data:`CERT_NONE`. Previously
1919 the same operation would have failed with a :exc:`ValueError`.
1920
Christian Heimes1aa9a752013-12-02 02:41:19 +01001921 .. note::
1922
1923 This features requires OpenSSL 0.9.8f or newer.
1924
Christian Heimesc7f70692019-05-31 11:44:05 +02001925.. attribute:: SSLContext.keylog_filename
1926
1927 Write TLS keys to a keylog file, whenever key material is generated or
1928 received. The keylog file is designed for debugging purposes only. The
1929 file format is specified by NSS and used by many traffic analyzers such
1930 as Wireshark. The log file is opened in append-only mode. Writes are
1931 synchronized between threads, but not between processes.
1932
1933 .. versionadded:: 3.8
1934
1935 .. note::
1936
1937 This features requires OpenSSL 1.1.1 or newer.
1938
Christian Heimes698dde12018-02-27 11:54:43 +01001939.. attribute:: SSLContext.maximum_version
1940
1941 A :class:`TLSVersion` enum member representing the highest supported
1942 TLS version. The value defaults to :attr:`TLSVersion.MAXIMUM_SUPPORTED`.
1943 The attribute is read-only for protocols other than :attr:`PROTOCOL_TLS`,
1944 :attr:`PROTOCOL_TLS_CLIENT`, and :attr:`PROTOCOL_TLS_SERVER`.
1945
1946 The attributes :attr:`~SSLContext.maximum_version`,
1947 :attr:`~SSLContext.minimum_version` and
1948 :attr:`SSLContext.options` all affect the supported SSL
1949 and TLS versions of the context. The implementation does not prevent
1950 invalid combination. For example a context with
1951 :attr:`OP_NO_TLSv1_2` in :attr:`~SSLContext.options` and
1952 :attr:`~SSLContext.maximum_version` set to :attr:`TLSVersion.TLSv1_2`
1953 will not be able to establish a TLS 1.2 connection.
1954
1955 .. note::
1956
1957 This attribute is not available unless the ssl module is compiled
1958 with OpenSSL 1.1.0g or newer.
1959
Zhiming Wangae2ea332019-03-01 01:15:04 +08001960 .. versionadded:: 3.7
1961
Christian Heimes698dde12018-02-27 11:54:43 +01001962.. attribute:: SSLContext.minimum_version
1963
1964 Like :attr:`SSLContext.maximum_version` except it is the lowest
1965 supported version or :attr:`TLSVersion.MINIMUM_SUPPORTED`.
1966
1967 .. note::
1968
1969 This attribute is not available unless the ssl module is compiled
1970 with OpenSSL 1.1.0g or newer.
1971
Zhiming Wangae2ea332019-03-01 01:15:04 +08001972 .. versionadded:: 3.7
1973
Christian Heimes78c7d522019-06-03 21:00:10 +02001974.. attribute:: SSLContext.num_tickets
1975
1976 Control the number of TLS 1.3 session tickets of a
1977 :attr:`TLS_PROTOCOL_SERVER` context. The setting has no impact on TLS
1978 1.0 to 1.2 connections.
1979
1980 .. note::
1981
1982 This attribute is not available unless the ssl module is compiled
1983 with OpenSSL 1.1.1 or newer.
1984
1985 .. versionadded:: 3.8
1986
Antoine Pitroub5218772010-05-21 09:56:06 +00001987.. attribute:: SSLContext.options
1988
1989 An integer representing the set of SSL options enabled on this context.
1990 The default value is :data:`OP_ALL`, but you can specify other options
1991 such as :data:`OP_NO_SSLv2` by ORing them together.
1992
1993 .. note::
1994 With versions of OpenSSL older than 0.9.8m, it is only possible
1995 to set options, not to clear them. Attempting to clear an option
Stéphane Wirtele483f022018-10-26 12:52:11 +02001996 (by resetting the corresponding bits) will raise a :exc:`ValueError`.
Antoine Pitroub5218772010-05-21 09:56:06 +00001997
Christian Heimes3aeacad2016-09-10 00:19:35 +02001998 .. versionchanged:: 3.6
1999 :attr:`SSLContext.options` returns :class:`Options` flags:
2000
Marco Buttu7b2491a2017-04-13 16:17:59 +02002001 >>> ssl.create_default_context().options # doctest: +SKIP
Christian Heimes3aeacad2016-09-10 00:19:35 +02002002 <Options.OP_ALL|OP_NO_SSLv3|OP_NO_SSLv2|OP_NO_COMPRESSION: 2197947391>
2003
Christian Heimes9fb051f2018-09-23 08:32:31 +02002004.. attribute:: SSLContext.post_handshake_auth
2005
2006 Enable TLS 1.3 post-handshake client authentication. Post-handshake auth
2007 is disabled by default and a server can only request a TLS client
2008 certificate during the initial handshake. When enabled, a server may
2009 request a TLS client certificate at any time after the handshake.
2010
2011 When enabled on client-side sockets, the client signals the server that
2012 it supports post-handshake authentication.
2013
2014 When enabled on server-side sockets, :attr:`SSLContext.verify_mode` must
2015 be set to :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`, too. The
2016 actual client cert exchange is delayed until
2017 :meth:`SSLSocket.verify_client_post_handshake` is called and some I/O is
2018 performed.
2019
Christian Heimes9fb051f2018-09-23 08:32:31 +02002020 .. note::
2021 Only available with OpenSSL 1.1.1 and TLS 1.3 enabled. Without TLS 1.3
2022 support, the property value is None and can't be modified
2023
Zhiming Wangae2ea332019-03-01 01:15:04 +08002024 .. versionadded:: 3.8
2025
Antoine Pitrou152efa22010-05-16 18:19:27 +00002026.. attribute:: SSLContext.protocol
2027
2028 The protocol version chosen when constructing the context. This attribute
2029 is read-only.
2030
Christian Heimes61d478c2018-01-27 15:51:38 +01002031.. attribute:: SSLContext.hostname_checks_common_name
2032
2033 Whether :attr:`~SSLContext.check_hostname` falls back to verify the cert's
2034 subject common name in the absence of a subject alternative name
2035 extension (default: true).
2036
Christian Heimes61d478c2018-01-27 15:51:38 +01002037 .. note::
2038 Only writeable with OpenSSL 1.1.0 or higher.
2039
Zhiming Wangae2ea332019-03-01 01:15:04 +08002040 .. versionadded:: 3.7
2041
matthewhughes9348e836bb2020-07-17 09:59:15 +01002042.. attribute:: SSLContext.security_level
2043
2044 An integer representing the `security level
2045 <https://www.openssl.org/docs/manmaster/man3/SSL_CTX_get_security_level.html>`_
2046 for the context. This attribute is read-only.
2047
2048 .. availability:: OpenSSL 1.1.0 or newer
2049
2050 .. versionadded:: 3.10
2051
Christian Heimes22587792013-11-21 23:56:13 +01002052.. attribute:: SSLContext.verify_flags
2053
2054 The flags for certificate verification operations. You can set flags like
2055 :data:`VERIFY_CRL_CHECK_LEAF` by ORing them together. By default OpenSSL
2056 does neither require nor verify certificate revocation lists (CRLs).
Christian Heimes2427b502013-11-23 11:24:32 +01002057 Available only with openssl version 0.9.8+.
Christian Heimes22587792013-11-21 23:56:13 +01002058
2059 .. versionadded:: 3.4
2060
Christian Heimes3aeacad2016-09-10 00:19:35 +02002061 .. versionchanged:: 3.6
2062 :attr:`SSLContext.verify_flags` returns :class:`VerifyFlags` flags:
2063
Marco Buttu7b2491a2017-04-13 16:17:59 +02002064 >>> ssl.create_default_context().verify_flags # doctest: +SKIP
Christian Heimes3aeacad2016-09-10 00:19:35 +02002065 <VerifyFlags.VERIFY_X509_TRUSTED_FIRST: 32768>
2066
Antoine Pitrou152efa22010-05-16 18:19:27 +00002067.. attribute:: SSLContext.verify_mode
2068
2069 Whether to try to verify other peers' certificates and how to behave
2070 if verification fails. This attribute must be one of
2071 :data:`CERT_NONE`, :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`.
2072
Christian Heimes3aeacad2016-09-10 00:19:35 +02002073 .. versionchanged:: 3.6
2074 :attr:`SSLContext.verify_mode` returns :class:`VerifyMode` enum:
2075
2076 >>> ssl.create_default_context().verify_mode
2077 <VerifyMode.CERT_REQUIRED: 2>
Antoine Pitrou152efa22010-05-16 18:19:27 +00002078
Thomas Wouters1b7f8912007-09-19 03:06:30 +00002079.. index:: single: certificates
2080
2081.. index:: single: X509 certificate
2082
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002083.. _ssl-certificates:
2084
Thomas Woutersed03b412007-08-28 21:37:11 +00002085Certificates
2086------------
2087
Georg Brandl7f01a132009-09-16 15:58:14 +00002088Certificates in general are part of a public-key / private-key system. In this
2089system, each *principal*, (which may be a machine, or a person, or an
2090organization) is assigned a unique two-part encryption key. One part of the key
2091is public, and is called the *public key*; the other part is kept secret, and is
2092called the *private key*. The two parts are related, in that if you encrypt a
2093message with one of the parts, you can decrypt it with the other part, and
2094**only** with the other part.
Thomas Woutersed03b412007-08-28 21:37:11 +00002095
Georg Brandl7f01a132009-09-16 15:58:14 +00002096A certificate contains information about two principals. It contains the name
2097of a *subject*, and the subject's public key. It also contains a statement by a
Andrés Delfino50924392018-06-18 01:34:30 -03002098second principal, the *issuer*, that the subject is who they claim to be, and
Georg Brandl7f01a132009-09-16 15:58:14 +00002099that this is indeed the subject's public key. The issuer's statement is signed
2100with the issuer's private key, which only the issuer knows. However, anyone can
2101verify the issuer's statement by finding the issuer's public key, decrypting the
2102statement with it, and comparing it to the other information in the certificate.
2103The certificate also contains information about the time period over which it is
2104valid. This is expressed as two fields, called "notBefore" and "notAfter".
Thomas Woutersed03b412007-08-28 21:37:11 +00002105
Georg Brandl7f01a132009-09-16 15:58:14 +00002106In the Python use of certificates, a client or server can use a certificate to
2107prove who they are. The other side of a network connection can also be required
2108to produce a certificate, and that certificate can be validated to the
2109satisfaction of the client or server that requires such validation. The
2110connection attempt can be set to raise an exception if the validation fails.
2111Validation is done automatically, by the underlying OpenSSL framework; the
2112application need not concern itself with its mechanics. But the application
2113does usually need to provide sets of certificates to allow this process to take
2114place.
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002115
Georg Brandl7f01a132009-09-16 15:58:14 +00002116Python uses files to contain certificates. They should be formatted as "PEM"
2117(see :rfc:`1422`), which is a base-64 encoded form wrapped with a header line
2118and a footer line::
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002119
2120 -----BEGIN CERTIFICATE-----
2121 ... (certificate in base64 PEM encoding) ...
2122 -----END CERTIFICATE-----
2123
Antoine Pitrou152efa22010-05-16 18:19:27 +00002124Certificate chains
2125^^^^^^^^^^^^^^^^^^
2126
Georg Brandl7f01a132009-09-16 15:58:14 +00002127The Python files which contain certificates can contain a sequence of
2128certificates, sometimes called a *certificate chain*. This chain should start
2129with the specific certificate for the principal who "is" the client or server,
2130and then the certificate for the issuer of that certificate, and then the
2131certificate for the issuer of *that* certificate, and so on up the chain till
2132you get to a certificate which is *self-signed*, that is, a certificate which
2133has the same subject and issuer, sometimes called a *root certificate*. The
2134certificates should just be concatenated together in the certificate file. For
2135example, suppose we had a three certificate chain, from our server certificate
2136to the certificate of the certification authority that signed our server
2137certificate, to the root certificate of the agency which issued the
2138certification authority's certificate::
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002139
2140 -----BEGIN CERTIFICATE-----
2141 ... (certificate for your server)...
2142 -----END CERTIFICATE-----
2143 -----BEGIN CERTIFICATE-----
2144 ... (the certificate for the CA)...
2145 -----END CERTIFICATE-----
2146 -----BEGIN CERTIFICATE-----
2147 ... (the root certificate for the CA's issuer)...
2148 -----END CERTIFICATE-----
2149
Antoine Pitrou152efa22010-05-16 18:19:27 +00002150CA certificates
2151^^^^^^^^^^^^^^^
2152
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002153If you are going to require validation of the other side of the connection's
2154certificate, you need to provide a "CA certs" file, filled with the certificate
Georg Brandl7f01a132009-09-16 15:58:14 +00002155chains for each issuer you are willing to trust. Again, this file just contains
2156these chains concatenated together. For validation, Python will use the first
Donald Stufft41374652014-03-24 19:26:03 -04002157chain it finds in the file which matches. The platform's certificates file can
2158be used by calling :meth:`SSLContext.load_default_certs`, this is done
2159automatically with :func:`.create_default_context`.
Thomas Woutersed03b412007-08-28 21:37:11 +00002160
Antoine Pitrou152efa22010-05-16 18:19:27 +00002161Combined key and certificate
2162^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2163
2164Often the private key is stored in the same file as the certificate; in this
2165case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain`
2166and :func:`wrap_socket` needs to be passed. If the private key is stored
2167with the certificate, it should come before the first certificate in
2168the certificate chain::
2169
2170 -----BEGIN RSA PRIVATE KEY-----
2171 ... (private key in base64 encoding) ...
2172 -----END RSA PRIVATE KEY-----
2173 -----BEGIN CERTIFICATE-----
2174 ... (certificate in base64 PEM encoding) ...
2175 -----END CERTIFICATE-----
2176
2177Self-signed certificates
2178^^^^^^^^^^^^^^^^^^^^^^^^
2179
Georg Brandl7f01a132009-09-16 15:58:14 +00002180If you are going to create a server that provides SSL-encrypted connection
2181services, you will need to acquire a certificate for that service. There are
2182many ways of acquiring appropriate certificates, such as buying one from a
2183certification authority. Another common practice is to generate a self-signed
2184certificate. The simplest way to do this is with the OpenSSL package, using
2185something like the following::
Thomas Woutersed03b412007-08-28 21:37:11 +00002186
Thomas Wouters1b7f8912007-09-19 03:06:30 +00002187 % openssl req -new -x509 -days 365 -nodes -out cert.pem -keyout cert.pem
2188 Generating a 1024 bit RSA private key
2189 .......++++++
2190 .............................++++++
2191 writing new private key to 'cert.pem'
2192 -----
2193 You are about to be asked to enter information that will be incorporated
2194 into your certificate request.
2195 What you are about to enter is what is called a Distinguished Name or a DN.
2196 There are quite a few fields but you can leave some blank
2197 For some fields there will be a default value,
2198 If you enter '.', the field will be left blank.
2199 -----
2200 Country Name (2 letter code) [AU]:US
2201 State or Province Name (full name) [Some-State]:MyState
2202 Locality Name (eg, city) []:Some City
2203 Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc.
2204 Organizational Unit Name (eg, section) []:My Group
2205 Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com
2206 Email Address []:ops@myserver.mygroup.myorganization.com
2207 %
Thomas Woutersed03b412007-08-28 21:37:11 +00002208
Georg Brandl7f01a132009-09-16 15:58:14 +00002209The disadvantage of a self-signed certificate is that it is its own root
2210certificate, and no one else will have it in their cache of known (and trusted)
2211root certificates.
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002212
2213
Thomas Woutersed03b412007-08-28 21:37:11 +00002214Examples
2215--------
2216
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002217Testing for SSL support
2218^^^^^^^^^^^^^^^^^^^^^^^
2219
Georg Brandl7f01a132009-09-16 15:58:14 +00002220To test for the presence of SSL support in a Python installation, user code
2221should use the following idiom::
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002222
2223 try:
Georg Brandl8a7e5da2011-01-02 19:07:51 +00002224 import ssl
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002225 except ImportError:
Georg Brandl8a7e5da2011-01-02 19:07:51 +00002226 pass
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002227 else:
Serhiy Storchakadba90392016-05-10 12:01:23 +03002228 ... # do something that requires SSL support
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002229
2230Client-side operation
2231^^^^^^^^^^^^^^^^^^^^^
2232
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002233This example creates a SSL context with the recommended security settings
2234for client sockets, including automatic certificate verification::
Thomas Woutersed03b412007-08-28 21:37:11 +00002235
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002236 >>> context = ssl.create_default_context()
Thomas Woutersed03b412007-08-28 21:37:11 +00002237
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002238If you prefer to tune security settings yourself, you might create
2239a context from scratch (but beware that you might not get the settings
2240right)::
Antoine Pitrou152efa22010-05-16 18:19:27 +00002241
Christian Heimes894d0f72019-09-12 13:10:05 +02002242 >>> context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
Antoine Pitrou152efa22010-05-16 18:19:27 +00002243 >>> context.load_verify_locations("/etc/ssl/certs/ca-bundle.crt")
2244
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002245(this snippet assumes your operating system places a bundle of all CA
2246certificates in ``/etc/ssl/certs/ca-bundle.crt``; if not, you'll get an
2247error and have to adjust the location)
Antoine Pitrou152efa22010-05-16 18:19:27 +00002248
Christian Heimes894d0f72019-09-12 13:10:05 +02002249The :data:`PROTOCOL_TLS_CLIENT` protocol configures the context for cert
2250validation and hostname verification. :attr:`~SSLContext.verify_mode` is
2251set to :data:`CERT_REQUIRED` and :attr:`~SSLContext.check_hostname` is set
2252to ``True``. All other protocols create SSL contexts with insecure defaults.
2253
Antoine Pitrou59fdd672010-10-08 10:37:08 +00002254When you use the context to connect to a server, :const:`CERT_REQUIRED`
Christian Heimes894d0f72019-09-12 13:10:05 +02002255and :attr:`~SSLContext.check_hostname` validate the server certificate: it
2256ensures that the server certificate was signed with one of the CA
2257certificates, checks the signature for correctness, and verifies other
2258properties like validity and identity of the hostname::
Antoine Pitrou152efa22010-05-16 18:19:27 +00002259
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002260 >>> conn = context.wrap_socket(socket.socket(socket.AF_INET),
2261 ... server_hostname="www.python.org")
2262 >>> conn.connect(("www.python.org", 443))
Antoine Pitrou152efa22010-05-16 18:19:27 +00002263
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002264You may then fetch the certificate::
Antoine Pitrou152efa22010-05-16 18:19:27 +00002265
Antoine Pitrou59fdd672010-10-08 10:37:08 +00002266 >>> cert = conn.getpeercert()
Antoine Pitrou59fdd672010-10-08 10:37:08 +00002267
2268Visual inspection shows that the certificate does identify the desired service
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002269(that is, the HTTPS host ``www.python.org``)::
Antoine Pitrou59fdd672010-10-08 10:37:08 +00002270
2271 >>> pprint.pprint(cert)
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002272 {'OCSP': ('http://ocsp.digicert.com',),
2273 'caIssuers': ('http://cacerts.digicert.com/DigiCertSHA2ExtendedValidationServerCA.crt',),
2274 'crlDistributionPoints': ('http://crl3.digicert.com/sha2-ev-server-g1.crl',
2275 'http://crl4.digicert.com/sha2-ev-server-g1.crl'),
2276 'issuer': ((('countryName', 'US'),),
2277 (('organizationName', 'DigiCert Inc'),),
2278 (('organizationalUnitName', 'www.digicert.com'),),
2279 (('commonName', 'DigiCert SHA2 Extended Validation Server CA'),)),
2280 'notAfter': 'Sep 9 12:00:00 2016 GMT',
2281 'notBefore': 'Sep 5 00:00:00 2014 GMT',
2282 'serialNumber': '01BB6F00122B177F36CAB49CEA8B6B26',
2283 'subject': ((('businessCategory', 'Private Organization'),),
2284 (('1.3.6.1.4.1.311.60.2.1.3', 'US'),),
2285 (('1.3.6.1.4.1.311.60.2.1.2', 'Delaware'),),
2286 (('serialNumber', '3359300'),),
2287 (('streetAddress', '16 Allen Rd'),),
2288 (('postalCode', '03894-4801'),),
2289 (('countryName', 'US'),),
2290 (('stateOrProvinceName', 'NH'),),
Mathieu Dupuyc49016e2020-03-30 23:28:25 +02002291 (('localityName', 'Wolfeboro'),),
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002292 (('organizationName', 'Python Software Foundation'),),
2293 (('commonName', 'www.python.org'),)),
2294 'subjectAltName': (('DNS', 'www.python.org'),
2295 ('DNS', 'python.org'),
Stéphane Wirtel19177fb2018-05-15 20:58:35 +02002296 ('DNS', 'pypi.org'),
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002297 ('DNS', 'docs.python.org'),
Stéphane Wirtel19177fb2018-05-15 20:58:35 +02002298 ('DNS', 'testpypi.org'),
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002299 ('DNS', 'bugs.python.org'),
2300 ('DNS', 'wiki.python.org'),
2301 ('DNS', 'hg.python.org'),
2302 ('DNS', 'mail.python.org'),
2303 ('DNS', 'packaging.python.org'),
2304 ('DNS', 'pythonhosted.org'),
2305 ('DNS', 'www.pythonhosted.org'),
2306 ('DNS', 'test.pythonhosted.org'),
2307 ('DNS', 'us.pycon.org'),
2308 ('DNS', 'id.python.org')),
Antoine Pitrou441ae042012-01-06 20:06:15 +01002309 'version': 3}
Antoine Pitrou152efa22010-05-16 18:19:27 +00002310
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002311Now the SSL channel is established and the certificate verified, you can
2312proceed to talk with the server::
Antoine Pitrou152efa22010-05-16 18:19:27 +00002313
Antoine Pitroudab64262010-09-19 13:31:06 +00002314 >>> conn.sendall(b"HEAD / HTTP/1.0\r\nHost: linuxfr.org\r\n\r\n")
2315 >>> pprint.pprint(conn.recv(1024).split(b"\r\n"))
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002316 [b'HTTP/1.1 200 OK',
2317 b'Date: Sat, 18 Oct 2014 18:27:20 GMT',
2318 b'Server: nginx',
2319 b'Content-Type: text/html; charset=utf-8',
2320 b'X-Frame-Options: SAMEORIGIN',
2321 b'Content-Length: 45679',
2322 b'Accept-Ranges: bytes',
2323 b'Via: 1.1 varnish',
2324 b'Age: 2188',
2325 b'X-Served-By: cache-lcy1134-LCY',
2326 b'X-Cache: HIT',
2327 b'X-Cache-Hits: 11',
2328 b'Vary: Cookie',
2329 b'Strict-Transport-Security: max-age=63072000; includeSubDomains',
Antoine Pitrou152efa22010-05-16 18:19:27 +00002330 b'Connection: close',
Antoine Pitrou152efa22010-05-16 18:19:27 +00002331 b'',
2332 b'']
2333
Antoine Pitrou152efa22010-05-16 18:19:27 +00002334See the discussion of :ref:`ssl-security` below.
2335
2336
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002337Server-side operation
2338^^^^^^^^^^^^^^^^^^^^^
2339
Antoine Pitrou152efa22010-05-16 18:19:27 +00002340For server operation, typically you'll need to have a server certificate, and
2341private key, each in a file. You'll first create a context holding the key
2342and the certificate, so that clients can check your authenticity. Then
2343you'll open a socket, bind it to a port, call :meth:`listen` on it, and start
2344waiting for clients to connect::
Thomas Woutersed03b412007-08-28 21:37:11 +00002345
2346 import socket, ssl
2347
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002348 context = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)
Antoine Pitrou152efa22010-05-16 18:19:27 +00002349 context.load_cert_chain(certfile="mycertfile", keyfile="mykeyfile")
2350
Thomas Woutersed03b412007-08-28 21:37:11 +00002351 bindsocket = socket.socket()
2352 bindsocket.bind(('myaddr.mydomain.com', 10023))
2353 bindsocket.listen(5)
2354
Antoine Pitrou152efa22010-05-16 18:19:27 +00002355When a client connects, you'll call :meth:`accept` on the socket to get the
2356new socket from the other end, and use the context's :meth:`SSLContext.wrap_socket`
2357method to create a server-side SSL socket for the connection::
Thomas Woutersed03b412007-08-28 21:37:11 +00002358
2359 while True:
Georg Brandl8a7e5da2011-01-02 19:07:51 +00002360 newsocket, fromaddr = bindsocket.accept()
2361 connstream = context.wrap_socket(newsocket, server_side=True)
2362 try:
2363 deal_with_client(connstream)
2364 finally:
Antoine Pitroub205d582011-01-02 22:09:27 +00002365 connstream.shutdown(socket.SHUT_RDWR)
Georg Brandl8a7e5da2011-01-02 19:07:51 +00002366 connstream.close()
Thomas Woutersed03b412007-08-28 21:37:11 +00002367
Antoine Pitrou152efa22010-05-16 18:19:27 +00002368Then you'll read data from the ``connstream`` and do something with it till you
Georg Brandl7f01a132009-09-16 15:58:14 +00002369are finished with the client (or the client is finished with you)::
Thomas Woutersed03b412007-08-28 21:37:11 +00002370
2371 def deal_with_client(connstream):
Georg Brandl8a7e5da2011-01-02 19:07:51 +00002372 data = connstream.recv(1024)
2373 # empty data means the client is finished with us
2374 while data:
2375 if not do_something(connstream, data):
2376 # we'll assume do_something returns False
2377 # when we're finished with client
2378 break
2379 data = connstream.recv(1024)
2380 # finished with client
Thomas Woutersed03b412007-08-28 21:37:11 +00002381
Antoine Pitrou152efa22010-05-16 18:19:27 +00002382And go back to listening for new client connections (of course, a real server
2383would probably handle each client connection in a separate thread, or put
Victor Stinner29611452014-10-10 12:52:43 +02002384the sockets in :ref:`non-blocking mode <ssl-nonblocking>` and use an event loop).
Antoine Pitrou152efa22010-05-16 18:19:27 +00002385
2386
Antoine Pitrou6f5dcb12011-07-11 01:35:48 +02002387.. _ssl-nonblocking:
2388
2389Notes on non-blocking sockets
2390-----------------------------
2391
Antoine Pitroub4bebda2014-04-29 10:03:28 +02002392SSL sockets behave slightly different than regular sockets in
2393non-blocking mode. When working with non-blocking sockets, there are
2394thus several things you need to be aware of:
2395
2396- Most :class:`SSLSocket` methods will raise either
2397 :exc:`SSLWantWriteError` or :exc:`SSLWantReadError` instead of
2398 :exc:`BlockingIOError` if an I/O operation would
2399 block. :exc:`SSLWantReadError` will be raised if a read operation on
2400 the underlying socket is necessary, and :exc:`SSLWantWriteError` for
2401 a write operation on the underlying socket. Note that attempts to
2402 *write* to an SSL socket may require *reading* from the underlying
2403 socket first, and attempts to *read* from the SSL socket may require
2404 a prior *write* to the underlying socket.
2405
2406 .. versionchanged:: 3.5
2407
2408 In earlier Python versions, the :meth:`!SSLSocket.send` method
2409 returned zero instead of raising :exc:`SSLWantWriteError` or
2410 :exc:`SSLWantReadError`.
Antoine Pitrou6f5dcb12011-07-11 01:35:48 +02002411
2412- Calling :func:`~select.select` tells you that the OS-level socket can be
2413 read from (or written to), but it does not imply that there is sufficient
2414 data at the upper SSL layer. For example, only part of an SSL frame might
2415 have arrived. Therefore, you must be ready to handle :meth:`SSLSocket.recv`
2416 and :meth:`SSLSocket.send` failures, and retry after another call to
2417 :func:`~select.select`.
2418
Antoine Pitrou75e03382014-05-18 00:55:13 +02002419- Conversely, since the SSL layer has its own framing, a SSL socket may
2420 still have data available for reading without :func:`~select.select`
2421 being aware of it. Therefore, you should first call
2422 :meth:`SSLSocket.recv` to drain any potentially available data, and then
2423 only block on a :func:`~select.select` call if still necessary.
2424
Antoine Pitrou6f5dcb12011-07-11 01:35:48 +02002425 (of course, similar provisions apply when using other primitives such as
Antoine Pitrou75e03382014-05-18 00:55:13 +02002426 :func:`~select.poll`, or those in the :mod:`selectors` module)
Antoine Pitrou6f5dcb12011-07-11 01:35:48 +02002427
2428- The SSL handshake itself will be non-blocking: the
2429 :meth:`SSLSocket.do_handshake` method has to be retried until it returns
2430 successfully. Here is a synopsis using :func:`~select.select` to wait for
2431 the socket's readiness::
2432
2433 while True:
2434 try:
2435 sock.do_handshake()
2436 break
Antoine Pitrou873bf262011-10-27 23:59:03 +02002437 except ssl.SSLWantReadError:
2438 select.select([sock], [], [])
2439 except ssl.SSLWantWriteError:
2440 select.select([], [sock], [])
Antoine Pitrou6f5dcb12011-07-11 01:35:48 +02002441
Victor Stinnercfb2a0a2014-10-10 12:45:10 +02002442.. seealso::
2443
Victor Stinner29611452014-10-10 12:52:43 +02002444 The :mod:`asyncio` module supports :ref:`non-blocking SSL sockets
2445 <ssl-nonblocking>` and provides a
Victor Stinnercfb2a0a2014-10-10 12:45:10 +02002446 higher level API. It polls for events using the :mod:`selectors` module and
2447 handles :exc:`SSLWantWriteError`, :exc:`SSLWantReadError` and
2448 :exc:`BlockingIOError` exceptions. It runs the SSL handshake asynchronously
2449 as well.
2450
Antoine Pitrou6f5dcb12011-07-11 01:35:48 +02002451
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002452Memory BIO Support
2453------------------
2454
2455.. versionadded:: 3.5
2456
2457Ever since the SSL module was introduced in Python 2.6, the :class:`SSLSocket`
2458class has provided two related but distinct areas of functionality:
2459
2460- SSL protocol handling
2461- Network IO
2462
2463The network IO API is identical to that provided by :class:`socket.socket`,
2464from which :class:`SSLSocket` also inherits. This allows an SSL socket to be
2465used as a drop-in replacement for a regular socket, making it very easy to add
2466SSL support to an existing application.
2467
2468Combining SSL protocol handling and network IO usually works well, but there
2469are some cases where it doesn't. An example is async IO frameworks that want to
2470use a different IO multiplexing model than the "select/poll on a file
2471descriptor" (readiness based) model that is assumed by :class:`socket.socket`
2472and by the internal OpenSSL socket IO routines. This is mostly relevant for
2473platforms like Windows where this model is not efficient. For this purpose, a
2474reduced scope variant of :class:`SSLSocket` called :class:`SSLObject` is
2475provided.
2476
2477.. class:: SSLObject
2478
2479 A reduced-scope variant of :class:`SSLSocket` representing an SSL protocol
Victor Stinner2debf152014-10-10 13:04:08 +02002480 instance that does not contain any network IO methods. This class is
2481 typically used by framework authors that want to implement asynchronous IO
2482 for SSL through memory buffers.
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002483
Victor Stinner2debf152014-10-10 13:04:08 +02002484 This class implements an interface on top of a low-level SSL object as
2485 implemented by OpenSSL. This object captures the state of an SSL connection
2486 but does not provide any network IO itself. IO needs to be performed through
2487 separate "BIO" objects which are OpenSSL's IO abstraction layer.
2488
Christian Heimes9d50ab52018-02-27 10:17:30 +01002489 This class has no public constructor. An :class:`SSLObject` instance
2490 must be created using the :meth:`~SSLContext.wrap_bio` method. This
2491 method will create the :class:`SSLObject` instance and bind it to a
2492 pair of BIOs. The *incoming* BIO is used to pass data from Python to the
2493 SSL protocol instance, while the *outgoing* BIO is used to pass data the
2494 other way around.
Victor Stinner2debf152014-10-10 13:04:08 +02002495
2496 The following methods are available:
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002497
Victor Stinner805b2622014-10-10 12:49:08 +02002498 - :attr:`~SSLSocket.context`
2499 - :attr:`~SSLSocket.server_side`
2500 - :attr:`~SSLSocket.server_hostname`
Christian Heimes99a65702016-09-10 23:44:53 +02002501 - :attr:`~SSLSocket.session`
2502 - :attr:`~SSLSocket.session_reused`
Victor Stinner805b2622014-10-10 12:49:08 +02002503 - :meth:`~SSLSocket.read`
2504 - :meth:`~SSLSocket.write`
2505 - :meth:`~SSLSocket.getpeercert`
Rémi Lapeyre74e1b6b2020-04-07 09:38:59 +02002506 - :meth:`~SSLSocket.selected_alpn_protocol`
Victor Stinner805b2622014-10-10 12:49:08 +02002507 - :meth:`~SSLSocket.selected_npn_protocol`
2508 - :meth:`~SSLSocket.cipher`
Benjamin Peterson4cb17812015-01-07 11:14:26 -06002509 - :meth:`~SSLSocket.shared_ciphers`
Victor Stinner805b2622014-10-10 12:49:08 +02002510 - :meth:`~SSLSocket.compression`
2511 - :meth:`~SSLSocket.pending`
2512 - :meth:`~SSLSocket.do_handshake`
Rémi Lapeyre74e1b6b2020-04-07 09:38:59 +02002513 - :meth:`~SSLSocket.verify_client_post_handshake`
Victor Stinner805b2622014-10-10 12:49:08 +02002514 - :meth:`~SSLSocket.unwrap`
2515 - :meth:`~SSLSocket.get_channel_binding`
Rémi Lapeyre74e1b6b2020-04-07 09:38:59 +02002516 - :meth:`~SSLSocket.version`
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002517
Victor Stinner2debf152014-10-10 13:04:08 +02002518 When compared to :class:`SSLSocket`, this object lacks the following
2519 features:
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002520
Benjamin Petersonfdfca5f2017-06-11 00:24:38 -07002521 - Any form of network IO; ``recv()`` and ``send()`` read and write only to
2522 the underlying :class:`MemoryBIO` buffers.
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002523
Victor Stinner2debf152014-10-10 13:04:08 +02002524 - There is no *do_handshake_on_connect* machinery. You must always manually
2525 call :meth:`~SSLSocket.do_handshake` to start the handshake.
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002526
Victor Stinner2debf152014-10-10 13:04:08 +02002527 - There is no handling of *suppress_ragged_eofs*. All end-of-file conditions
2528 that are in violation of the protocol are reported via the
2529 :exc:`SSLEOFError` exception.
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002530
Victor Stinner2debf152014-10-10 13:04:08 +02002531 - The method :meth:`~SSLSocket.unwrap` call does not return anything,
2532 unlike for an SSL socket where it returns the underlying socket.
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002533
Victor Stinner2debf152014-10-10 13:04:08 +02002534 - The *server_name_callback* callback passed to
2535 :meth:`SSLContext.set_servername_callback` will get an :class:`SSLObject`
2536 instance instead of a :class:`SSLSocket` instance as its first parameter.
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002537
Victor Stinner2debf152014-10-10 13:04:08 +02002538 Some notes related to the use of :class:`SSLObject`:
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002539
Victor Stinner2debf152014-10-10 13:04:08 +02002540 - All IO on an :class:`SSLObject` is :ref:`non-blocking <ssl-nonblocking>`.
2541 This means that for example :meth:`~SSLSocket.read` will raise an
2542 :exc:`SSLWantReadError` if it needs more data than the incoming BIO has
2543 available.
2544
2545 - There is no module-level ``wrap_bio()`` call like there is for
2546 :meth:`~SSLContext.wrap_socket`. An :class:`SSLObject` is always created
2547 via an :class:`SSLContext`.
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002548
Christian Heimes9d50ab52018-02-27 10:17:30 +01002549 .. versionchanged:: 3.7
2550 :class:`SSLObject` instances must to created with
2551 :meth:`~SSLContext.wrap_bio`. In earlier versions, it was possible to
2552 create instances directly. This was never documented or officially
2553 supported.
2554
Victor Stinner805b2622014-10-10 12:49:08 +02002555An SSLObject communicates with the outside world using memory buffers. The
2556class :class:`MemoryBIO` provides a memory buffer that can be used for this
2557purpose. It wraps an OpenSSL memory BIO (Basic IO) object:
2558
2559.. class:: MemoryBIO
2560
2561 A memory buffer that can be used to pass data between Python and an SSL
2562 protocol instance.
2563
2564 .. attribute:: MemoryBIO.pending
2565
2566 Return the number of bytes currently in the memory buffer.
2567
2568 .. attribute:: MemoryBIO.eof
2569
2570 A boolean indicating whether the memory BIO is current at the end-of-file
2571 position.
2572
2573 .. method:: MemoryBIO.read(n=-1)
2574
2575 Read up to *n* bytes from the memory buffer. If *n* is not specified or
2576 negative, all bytes are returned.
2577
2578 .. method:: MemoryBIO.write(buf)
2579
2580 Write the bytes from *buf* to the memory BIO. The *buf* argument must be an
2581 object supporting the buffer protocol.
2582
2583 The return value is the number of bytes written, which is always equal to
2584 the length of *buf*.
2585
2586 .. method:: MemoryBIO.write_eof()
2587
2588 Write an EOF marker to the memory BIO. After this method has been called, it
2589 is illegal to call :meth:`~MemoryBIO.write`. The attribute :attr:`eof` will
2590 become true after all data currently in the buffer has been read.
2591
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002592
Christian Heimes99a65702016-09-10 23:44:53 +02002593SSL session
2594-----------
2595
2596.. versionadded:: 3.6
2597
2598.. class:: SSLSession
2599
2600 Session object used by :attr:`~SSLSocket.session`.
2601
2602 .. attribute:: id
2603 .. attribute:: time
2604 .. attribute:: timeout
2605 .. attribute:: ticket_lifetime_hint
2606 .. attribute:: has_ticket
2607
2608
Antoine Pitrou152efa22010-05-16 18:19:27 +00002609.. _ssl-security:
2610
2611Security considerations
2612-----------------------
2613
Antoine Pitrouc5e075f2014-03-22 18:19:11 +01002614Best defaults
2615^^^^^^^^^^^^^
Antoine Pitrou152efa22010-05-16 18:19:27 +00002616
Antoine Pitrouc5e075f2014-03-22 18:19:11 +01002617For **client use**, if you don't have any special requirements for your
2618security policy, it is highly recommended that you use the
2619:func:`create_default_context` function to create your SSL context.
2620It will load the system's trusted CA certificates, enable certificate
Antoine Pitrouf8cbbbb2014-03-23 16:31:08 +01002621validation and hostname checking, and try to choose reasonably secure
2622protocol and cipher settings.
Antoine Pitrouc5e075f2014-03-22 18:19:11 +01002623
2624For example, here is how you would use the :class:`smtplib.SMTP` class to
2625create a trusted, secure connection to a SMTP server::
2626
2627 >>> import ssl, smtplib
2628 >>> smtp = smtplib.SMTP("mail.python.org", port=587)
2629 >>> context = ssl.create_default_context()
2630 >>> smtp.starttls(context=context)
2631 (220, b'2.0.0 Ready to start TLS')
2632
2633If a client certificate is needed for the connection, it can be added with
2634:meth:`SSLContext.load_cert_chain`.
2635
2636By contrast, if you create the SSL context by calling the :class:`SSLContext`
Antoine Pitrouf8cbbbb2014-03-23 16:31:08 +01002637constructor yourself, it will not have certificate validation nor hostname
2638checking enabled by default. If you do so, please read the paragraphs below
2639to achieve a good security level.
Antoine Pitrouc5e075f2014-03-22 18:19:11 +01002640
2641Manual settings
2642^^^^^^^^^^^^^^^
2643
2644Verifying certificates
2645''''''''''''''''''''''
2646
Donald Stufft8b852f12014-05-20 12:58:38 -04002647When calling the :class:`SSLContext` constructor directly,
Antoine Pitrou152efa22010-05-16 18:19:27 +00002648:const:`CERT_NONE` is the default. Since it does not authenticate the other
2649peer, it can be insecure, especially in client mode where most of time you
2650would like to ensure the authenticity of the server you're talking to.
2651Therefore, when in client mode, it is highly recommended to use
2652:const:`CERT_REQUIRED`. However, it is in itself not sufficient; you also
Antoine Pitrou59fdd672010-10-08 10:37:08 +00002653have to check that the server certificate, which can be obtained by calling
2654:meth:`SSLSocket.getpeercert`, matches the desired service. For many
2655protocols and applications, the service can be identified by the hostname;
Christian Heimes1aa9a752013-12-02 02:41:19 +01002656in this case, the :func:`match_hostname` function can be used. This common
2657check is automatically performed when :attr:`SSLContext.check_hostname` is
2658enabled.
Antoine Pitrou152efa22010-05-16 18:19:27 +00002659
Christian Heimes61d478c2018-01-27 15:51:38 +01002660.. versionchanged:: 3.7
2661 Hostname matchings is now performed by OpenSSL. Python no longer uses
2662 :func:`match_hostname`.
2663
Antoine Pitrou152efa22010-05-16 18:19:27 +00002664In server mode, if you want to authenticate your clients using the SSL layer
2665(rather than using a higher-level authentication mechanism), you'll also have
2666to specify :const:`CERT_REQUIRED` and similarly check the client certificate.
2667
Thomas Woutersed03b412007-08-28 21:37:11 +00002668
Antoine Pitroub5218772010-05-21 09:56:06 +00002669Protocol versions
Antoine Pitrouc5e075f2014-03-22 18:19:11 +01002670'''''''''''''''''
Antoine Pitroub5218772010-05-21 09:56:06 +00002671
Antoine Pitrou4b4ddb22014-10-21 00:14:39 +02002672SSL versions 2 and 3 are considered insecure and are therefore dangerous to
2673use. If you want maximum compatibility between clients and servers, it is
Christian Heimes5fe668c2016-09-12 00:01:11 +02002674recommended to use :const:`PROTOCOL_TLS_CLIENT` or
2675:const:`PROTOCOL_TLS_SERVER` as the protocol version. SSLv2 and SSLv3 are
2676disabled by default.
Antoine Pitroub5218772010-05-21 09:56:06 +00002677
Marco Buttu7b2491a2017-04-13 16:17:59 +02002678::
2679
Christian Heimesc4d2e502016-09-12 01:14:35 +02002680 >>> client_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
2681 >>> client_context.options |= ssl.OP_NO_TLSv1
2682 >>> client_context.options |= ssl.OP_NO_TLSv1_1
Christian Heimes5fe668c2016-09-12 00:01:11 +02002683
Antoine Pitroub5218772010-05-21 09:56:06 +00002684
Christian Heimes598894f2016-09-05 23:19:05 +02002685The SSL context created above will only allow TLSv1.2 and later (if
Christian Heimes5fe668c2016-09-12 00:01:11 +02002686supported by your system) connections to a server. :const:`PROTOCOL_TLS_CLIENT`
2687implies certificate validation and hostname checks by default. You have to
2688load certificates into the context.
2689
Antoine Pitroub5218772010-05-21 09:56:06 +00002690
Antoine Pitroub7ffed82012-01-04 02:53:44 +01002691Cipher selection
Antoine Pitrouc5e075f2014-03-22 18:19:11 +01002692''''''''''''''''
Antoine Pitroub7ffed82012-01-04 02:53:44 +01002693
2694If you have advanced security requirements, fine-tuning of the ciphers
2695enabled when negotiating a SSL session is possible through the
2696:meth:`SSLContext.set_ciphers` method. Starting from Python 3.2.3, the
2697ssl module disables certain weak ciphers by default, but you may want
Donald Stufft79ccaa22014-03-21 21:33:34 -04002698to further restrict the cipher choice. Be sure to read OpenSSL's documentation
Sanyam Khurana338cd832018-01-20 05:55:37 +05302699about the `cipher list format <https://www.openssl.org/docs/manmaster/man1/ciphers.html#CIPHER-LIST-FORMAT>`_.
Christian Heimes5fe668c2016-09-12 00:01:11 +02002700If you want to check which ciphers are enabled by a given cipher list, use
2701:meth:`SSLContext.get_ciphers` or the ``openssl ciphers`` command on your
2702system.
Antoine Pitroub7ffed82012-01-04 02:53:44 +01002703
Antoine Pitrou9eefe912013-11-17 15:35:33 +01002704Multi-processing
2705^^^^^^^^^^^^^^^^
2706
2707If using this module as part of a multi-processed application (using,
2708for example the :mod:`multiprocessing` or :mod:`concurrent.futures` modules),
2709be aware that OpenSSL's internal random number generator does not properly
2710handle forked processes. Applications must change the PRNG state of the
2711parent process if they use any SSL feature with :func:`os.fork`. Any
2712successful call of :func:`~ssl.RAND_add`, :func:`~ssl.RAND_bytes` or
2713:func:`~ssl.RAND_pseudo_bytes` is sufficient.
2714
Georg Brandl48310cd2009-01-03 21:18:54 +00002715
Christian Heimes529525f2018-05-23 22:24:45 +02002716.. _ssl-tlsv1_3:
2717
2718TLS 1.3
2719-------
2720
2721.. versionadded:: 3.7
2722
2723Python has provisional and experimental support for TLS 1.3 with OpenSSL
27241.1.1. The new protocol behaves slightly differently than previous version
2725of TLS/SSL. Some new TLS 1.3 features are not yet available.
2726
2727- TLS 1.3 uses a disjunct set of cipher suites. All AES-GCM and
2728 ChaCha20 cipher suites are enabled by default. The method
2729 :meth:`SSLContext.set_ciphers` cannot enable or disable any TLS 1.3
Stéphane Wirtel07fbbfd2018-10-05 16:17:18 +02002730 ciphers yet, but :meth:`SSLContext.get_ciphers` returns them.
Christian Heimes529525f2018-05-23 22:24:45 +02002731- Session tickets are no longer sent as part of the initial handshake and
2732 are handled differently. :attr:`SSLSocket.session` and :class:`SSLSession`
2733 are not compatible with TLS 1.3.
2734- Client-side certificates are also no longer verified during the initial
2735 handshake. A server can request a certificate at any time. Clients
2736 process certificate requests while they send or receive application data
2737 from the server.
2738- TLS 1.3 features like early data, deferred TLS client cert request,
2739 signature algorithm configuration, and rekeying are not supported yet.
2740
2741
2742.. _ssl-libressl:
Christian Heimes6cdb7952018-02-24 22:12:40 +01002743
2744LibreSSL support
2745----------------
2746
2747LibreSSL is a fork of OpenSSL 1.0.1. The ssl module has limited support for
2748LibreSSL. Some features are not available when the ssl module is compiled
2749with LibreSSL.
2750
2751* LibreSSL >= 2.6.1 no longer supports NPN. The methods
2752 :meth:`SSLContext.set_npn_protocols` and
2753 :meth:`SSLSocket.selected_npn_protocol` are not available.
2754* :meth:`SSLContext.set_default_verify_paths` ignores the env vars
2755 :envvar:`SSL_CERT_FILE` and :envvar:`SSL_CERT_PATH` although
2756 :func:`get_default_verify_paths` still reports them.
2757
2758
Thomas Wouters1b7f8912007-09-19 03:06:30 +00002759.. seealso::
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002760
Thomas Wouters1b7f8912007-09-19 03:06:30 +00002761 Class :class:`socket.socket`
Georg Brandl4a6cf6c2013-10-06 18:20:31 +02002762 Documentation of underlying :mod:`socket` class
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002763
Georg Brandl5d941342016-02-26 19:37:12 +01002764 `SSL/TLS Strong Encryption: An Introduction <https://httpd.apache.org/docs/trunk/en/ssl/ssl_intro.html>`_
Matt Eaton9cf8c422018-03-10 19:00:04 -06002765 Intro from the Apache HTTP Server documentation
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002766
Serhiy Storchaka0a36ac12018-05-31 07:39:00 +03002767 :rfc:`RFC 1422: Privacy Enhancement for Internet Electronic Mail: Part II: Certificate-Based Key Management <1422>`
Thomas Wouters1b7f8912007-09-19 03:06:30 +00002768 Steve Kent
Thomas Wouters47b49bf2007-08-30 22:15:33 +00002769
Serhiy Storchaka0a36ac12018-05-31 07:39:00 +03002770 :rfc:`RFC 4086: Randomness Requirements for Security <4086>`
Chandan Kumar63c2c8a2017-06-09 15:13:58 +05302771 Donald E., Jeffrey I. Schiller
Thomas Wouters89d996e2007-09-08 17:39:28 +00002772
Serhiy Storchaka0a36ac12018-05-31 07:39:00 +03002773 :rfc:`RFC 5280: Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile <5280>`
Chandan Kumar63c2c8a2017-06-09 15:13:58 +05302774 D. Cooper
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002775
Serhiy Storchaka0a36ac12018-05-31 07:39:00 +03002776 :rfc:`RFC 5246: The Transport Layer Security (TLS) Protocol Version 1.2 <5246>`
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002777 T. Dierks et. al.
2778
Serhiy Storchaka0a36ac12018-05-31 07:39:00 +03002779 :rfc:`RFC 6066: Transport Layer Security (TLS) Extensions <6066>`
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002780 D. Eastlake
2781
Serhiy Storchaka6dff0202016-05-07 10:49:07 +03002782 `IANA TLS: Transport Layer Security (TLS) Parameters <https://www.iana.org/assignments/tls-parameters/tls-parameters.xml>`_
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002783 IANA
Christian Heimesad0ffa02017-09-06 16:19:56 -07002784
Serhiy Storchaka0a36ac12018-05-31 07:39:00 +03002785 :rfc:`RFC 7525: Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) <7525>`
Christian Heimesad0ffa02017-09-06 16:19:56 -07002786 IETF
2787
2788 `Mozilla's Server Side TLS recommendations <https://wiki.mozilla.org/Security/Server_Side_TLS>`_
2789 Mozilla