Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
6f362fa6
Kaydet (Commit)
6f362fa6
authored
Nis 08, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
actually ssl3 is just completely broken
üst
7ecfc82e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
ssl.rst
Doc/library/ssl.rst
+7
-7
No files found.
Doc/library/ssl.rst
Dosyayı görüntüle @
6f362fa6
...
@@ -263,13 +263,13 @@ purposes.
...
@@ -263,13 +263,13 @@ purposes.
.. note::
.. note::
If you find that when certain older clients or servers attempt to connect
If you find that when certain older clients or servers attempt to connect
with a :class:`SSLContext` created by this function that they get an
with a :class:`SSLContext` created by this function that they get an
error
error stating "Protocol or cipher suite mismatch", it may be that the
y
stating "Protocol or cipher suite mismatch", it may be that they onl
y
only
support SSL3.0 which this function excludes using the
support SSL3.0 which this function excludes using the
:data:`OP_NO_SSLv3`. SSL3.0
has problematic security due to a number of
:data:`OP_NO_SSLv3`. SSL3.0
is widely considered to be `completely broken
poor implementations and it's reliance on MD5 within the protocol. If you
<https://en.wikipedia.org/wiki/POODLE>`_. If you still wish to continue to
wish to continue to use this function but still allow SSL 3.0 connections
use this function but still allow SSL 3.0 connections you can re-enable
you can re-enable
them using::
them using::
ctx = ssl.create_default_context(Purpose.CLIENT_AUTH)
ctx = ssl.create_default_context(Purpose.CLIENT_AUTH)
ctx.options &= ~ssl.OP_NO_SSLv3
ctx.options &= ~ssl.OP_NO_SSLv3
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment