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
2e57b4e4
Kaydet (Commit)
2e57b4e4
authored
Tem 01, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #21781: Make the ssl module "ssize_t clean" for parsing parameters.
ssl.RAND_add() now supports strings longer than 2 GB.
üst
1690ed39
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
NEWS
Misc/NEWS
+2
-0
_ssl.c
Modules/_ssl.c
+9
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
2e57b4e4
...
...
@@ -27,6 +27,8 @@ Core and Builtins
Library
-------
- Issue #21781: ssl.RAND_add() now supports strings longer than 2 GB.
- Issue #11453: asyncore: emit a ResourceWarning when an unclosed file_wrapper
object is destroyed. The destructor now closes the file if needed. The
close() method can now be called twice: the second call does nothing.
...
...
Modules/_ssl.c
Dosyayı görüntüle @
2e57b4e4
...
...
@@ -14,6 +14,8 @@
http://bugs.python.org/issue8108#msg102867 ?
*/
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#ifdef WITH_THREAD
...
...
@@ -3235,12 +3237,17 @@ static PyObject *
PySSL_RAND_add
(
PyObject
*
self
,
PyObject
*
args
)
{
char
*
buf
;
int
l
en
;
Py_ssize_t
len
,
writt
en
;
double
entropy
;
if
(
!
PyArg_ParseTuple
(
args
,
"s#d:RAND_add"
,
&
buf
,
&
len
,
&
entropy
))
return
NULL
;
RAND_add
(
buf
,
len
,
entropy
);
do
{
written
=
Py_MIN
(
len
,
INT_MAX
);
RAND_add
(
buf
,
(
int
)
written
,
entropy
);
buf
+=
written
;
len
-=
written
;
}
while
(
len
);
Py_INCREF
(
Py_None
);
return
Py_None
;
}
...
...
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