]> granicus.if.org Git - python/commit
Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom()
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 18 Sep 2015 13:38:37 +0000 (15:38 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 18 Sep 2015 13:38:37 +0000 (15:38 +0200)
commit3abf44e48f973d5ffba779471a6c4dab00be2f77
tree446c91f3134077bef4f0ff1879ff14744b27990a
parent258f17c96d2537050b9a3a5ae42b5fdaa1e80224
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.
Misc/NEWS
Python/random.c
configure
configure.ac
pyconfig.h.in