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
c51d244f
Kaydet (Commit)
c51d244f
authored
Eyl 30, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25171: Fix compilation issue on OpenBSD in random.c
Patch written by Remi Pointel.
üst
d69dd8bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
random.c
Python/random.c
+3
-3
No files found.
Python/random.c
Dosyayı görüntüle @
c51d244f
...
...
@@ -364,7 +364,7 @@ _PyOS_URandom(void *buffer, Py_ssize_t size)
#ifdef MS_WINDOWS
return
win32_urandom
((
unsigned
char
*
)
buffer
,
size
,
1
);
#elif
PY_GETENTROPY
#elif
defined(PY_GETENTROPY)
return
py_getentropy
(
buffer
,
size
,
0
);
#else
return
dev_urandom_python
((
char
*
)
buffer
,
size
);
...
...
@@ -411,7 +411,7 @@ _PyRandom_Init(void)
else
{
#ifdef MS_WINDOWS
(
void
)
win32_urandom
(
secret
,
secret_size
,
0
);
#elif
PY_GETENTROPY
#elif
defined(PY_GETENTROPY)
(
void
)
py_getentropy
(
secret
,
secret_size
,
1
);
#else
dev_urandom_noraise
(
secret
,
secret_size
);
...
...
@@ -427,7 +427,7 @@ _PyRandom_Fini(void)
CryptReleaseContext
(
hCryptProv
,
0
);
hCryptProv
=
0
;
}
#elif
PY_GETENTROPY
#elif
defined(PY_GETENTROPY)
/* nothing to clean */
#else
dev_urandom_close
();
...
...
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