diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-07-03 18:29:47 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2019-07-03 18:29:47 -0400 |
commit | 977f00349d6e0b72325af683c461fd08614e7186 (patch) | |
tree | 08e2734da20c4a1a96ee7044fd1b7d3d2f031cd5 /docs | |
parent | 503ed06d6d9a7f520cbc1a36c03b5ee61cae0a75 (diff) | |
download | cryptography-977f00349d6e0b72325af683c461fd08614e7186.tar.gz cryptography-977f00349d6e0b72325af683c461fd08614e7186.tar.bz2 cryptography-977f00349d6e0b72325af683c461fd08614e7186.zip |
we do not use getrandom in nonblocking mode any more (#4934)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/backends/openssl.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/backends/openssl.rst b/docs/hazmat/backends/openssl.rst index 07ae74a2..d31dcae2 100644 --- a/docs/hazmat/backends/openssl.rst +++ b/docs/hazmat/backends/openssl.rst @@ -106,7 +106,7 @@ seeded from the same pool as ``/dev/random``. +------------------------------------------+------------------------------+ | Windows | ``CryptGenRandom()`` | +------------------------------------------+------------------------------+ -| Linux >= 3.17 with working | ``getrandom(GRND_NONBLOCK)`` | +| Linux >= 3.17 with working | ``getrandom()`` | | ``SYS_getrandom`` syscall | | +------------------------------------------+------------------------------+ | OpenBSD >= 5.6 | ``getentropy()`` | |