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
1ccfa901
Kaydet (Commit)
1ccfa901
authored
Agu 26, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Return a boolean for status
üst
e1188629
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
_ssl.c
Modules/_ssl.c
+4
-4
No files found.
Modules/_ssl.c
Dosyayı görüntüle @
1ccfa901
...
@@ -616,15 +616,15 @@ bound on the entropy contained in string.");
...
@@ -616,15 +616,15 @@ bound on the entropy contained in string.");
static
PyObject
*
static
PyObject
*
PySSL_RAND_status
(
PyObject
*
self
)
PySSL_RAND_status
(
PyObject
*
self
)
{
{
return
Py
Int
_FromLong
(
RAND_status
());
return
Py
Bool
_FromLong
(
RAND_status
());
}
}
PyDoc_STRVAR
(
PySSL_RAND_status_doc
,
PyDoc_STRVAR
(
PySSL_RAND_status_doc
,
"RAND_status() -> 0 or 1
\n
\
"RAND_status() -> 0 or 1
\n
\
\n
\
\n
\
Returns
1 if the OpenSSL PRNG has been seeded with enough data and 0 if not.
\n
\
Returns
True if the OpenSSL PRNG has been seeded with enough data and
\n
\
It is necessary to seed the PRNG with RAND_add() on some platforms before
\n
\
False if not. It is necessary to seed the PRNG with RAND_add()
\n
\
using the ssl() function."
);
on some platforms before
using the ssl() function."
);
static
PyObject
*
static
PyObject
*
PySSL_RAND_egd
(
PyObject
*
self
,
PyObject
*
arg
)
PySSL_RAND_egd
(
PyObject
*
self
,
PyObject
*
arg
)
...
...
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