]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
versionchanged for rc4 removal (closes #23679)
authorBenjamin Peterson <benjamin@python.org>
Mon, 16 Mar 2015 17:43:38 +0000 (12:43 -0500)
committerBenjamin Peterson <benjamin@python.org>
Mon, 16 Mar 2015 17:43:38 +0000 (12:43 -0500)
Doc/library/ssl.rst

index d328c2bad68f26262ff36173177e64cc4aec9d73..69086d210ce18a665246b98ac1c3957851265156 100644 (file)
@@ -245,14 +245,13 @@ purposes.
    :const:`None`, this function can choose to trust the system's default
    CA certificates instead.
 
-   The settings in Python 2.7.9 are: :data:`PROTOCOL_SSLv23`,
-   :data:`OP_NO_SSLv2`, and :data:`OP_NO_SSLv3` with high encryption cipher
-   suites without RC4 and without unauthenticated cipher suites. Passing
-   :data:`~Purpose.SERVER_AUTH` as *purpose* sets
-   :data:`~SSLContext.verify_mode` to :data:`CERT_REQUIRED` and either loads CA
-   certificates (when at least one of *cafile*, *capath* or *cadata* is given)
-   or uses :meth:`SSLContext.load_default_certs` to load default CA
-   certificates.
+   The settings are: :data:`PROTOCOL_SSLv23`, :data:`OP_NO_SSLv2`, and
+   :data:`OP_NO_SSLv3` with high encryption cipher suites without RC4 and
+   without unauthenticated cipher suites. Passing :data:`~Purpose.SERVER_AUTH`
+   as *purpose* sets :data:`~SSLContext.verify_mode` to :data:`CERT_REQUIRED`
+   and either loads CA certificates (when at least one of *cafile*, *capath* or
+   *cadata* is given) or uses :meth:`SSLContext.load_default_certs` to load
+   default CA certificates.
 
    .. note::
       The protocol, options, cipher and other settings may change to more
@@ -277,6 +276,10 @@ purposes.
 
    .. versionadded:: 2.7.9
 
+   .. versionchanged:: 2.7.10
+
+     RC4 was dropped from the default cipher string.
+
 
 Random generation
 ^^^^^^^^^^^^^^^^^