]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom()
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 1 Oct 2015 07:47:30 +0000 (09:47 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 1 Oct 2015 07:47:30 +0000 (09:47 +0200)
commitbae2d6203fca3ecaaf9fbc7cee84ad83ddf52dc5
tree495b0afaa05b7c0d235af2e54c70015b16f4d2e3
parent87bddbac9d178b549fac830adc76bc8f100b2a47
Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom()
function instead of the getentropy() function. The getentropy() function is
blocking to generate very good quality entropy, os.urandom() doesn't need such
high-quality entropy.
Lib/test/test_os.py
Misc/NEWS
Python/random.c
configure
configure.ac
pyconfig.h.in