This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2014-10-09.09:26:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412846768.8.0.764206346975.issue22585@psf.upfronthosting.co.za>
In-reply-to
Content
The future OpenBSD 5.6 (scheduled in november 2014) will have a new getentropy() syscall and a new getentropy() in their C library which avoid the need of a file descriptor:
http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man2/getentropy.2?query=getentropy&sec=2

Note: "The maximum buffer size permitted is 256 bytes. If buflen exceeds this, an error of EIO will be indicated."

The file descriptor of os.urandom() causes perfomance issues and surprising bugs: #18756, #21207.

For Python 2.7, see also the PEP 466 and the issue #21305.

See also issues:

- #22181: os.urandom() should use Linux 3.17 getrandom() syscall
- #22542: Use arc4random under OpenBSD for os.urandom() if /dev/urandom is not present
History
Date User Action Args
2014-10-09 09:26:08vstinnersetrecipients: + vstinner
2014-10-09 09:26:08vstinnersetmessageid: <1412846768.8.0.764206346975.issue22585@psf.upfronthosting.co.za>
2014-10-09 09:26:08vstinnerlinkissue22585 messages
2014-10-09 09:26:08vstinnercreate