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
f9faaad8
Kaydet (Commit)
f9faaad8
authored
May 16, 2010
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #8477: ssl.RAND_egd() supports str with surrogates and bytes for the path
üst
3800e1e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
NEWS
Misc/NEWS
+2
-2
_ssl.c
Modules/_ssl.c
+9
-7
No files found.
Misc/NEWS
Dosyayı görüntüle @
f9faaad8
...
...
@@ -363,8 +363,8 @@ C-API
Library
-------
- Issue #8477:
_ssl._test_decode_cert() supports str with surrogates and bytes
for the filename
- Issue #8477:
ssl.RAND_egd() and ssl._test_decode_cert() support str with
surrogates and bytes
for the filename
- Issue #8550: Add first class ``SSLContext`` objects to the ssl module.
...
...
Modules/_ssl.c
Dosyayı görüntüle @
f9faaad8
...
...
@@ -1730,15 +1730,17 @@ It is necessary to seed the PRNG with RAND_add() on some platforms before\n\
using the ssl() function."
);
static
PyObject
*
PySSL_RAND_egd
(
PyObject
*
self
,
PyObject
*
arg
)
PySSL_RAND_egd
(
PyObject
*
self
,
PyObject
*
arg
s
)
{
PyObject
*
path
;
int
bytes
;
if
(
!
PyUnicode_Check
(
arg
))
return
PyErr_Format
(
PyExc_TypeError
,
"RAND_egd() expected string, found %s"
,
Py_TYPE
(
arg
)
->
tp_name
);
bytes
=
RAND_egd
(
_PyUnicode_AsString
(
arg
));
if
(
!
PyArg_ParseTuple
(
args
,
"O&|i:RAND_egd"
,
PyUnicode_FSConverter
,
&
path
))
return
NULL
;
bytes
=
RAND_egd
(
PyBytes_AsString
(
path
));
Py_DECREF
(
path
);
if
(
bytes
==
-
1
)
{
PyErr_SetString
(
PySSLErrorObject
,
"EGD connection failed or EGD did not return "
...
...
@@ -1767,7 +1769,7 @@ static PyMethodDef PySSL_methods[] = {
#ifdef HAVE_OPENSSL_RAND
{
"RAND_add"
,
PySSL_RAND_add
,
METH_VARARGS
,
PySSL_RAND_add_doc
},
{
"RAND_egd"
,
PySSL_RAND_egd
,
METH_
O
,
{
"RAND_egd"
,
PySSL_RAND_egd
,
METH_
VARARGS
,
PySSL_RAND_egd_doc
},
{
"RAND_status"
,
(
PyCFunction
)
PySSL_RAND_status
,
METH_NOARGS
,
PySSL_RAND_status_doc
},
...
...
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