[issue12049] expose RAND_bytes() function of OpenSSL

2011-05-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 195de3d10879 by Victor Stinner in branch 'default': Issue #12049: cleanup the warning in the random module doc http://hg.python.org/cpython/rev/195de3d10879 -- ___ Python tracker

[issue12049] expose RAND_bytes() function of OpenSSL

2011-05-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 178d367c9733 by Victor Stinner in branch 'default': Issue #12049: Document errors cases of ssl.RAND_bytes() and http://hg.python.org/cpython/rev/178d367c9733 -- ___ Python tracker

[issue12049] expose RAND_bytes() function of OpenSSL

2011-05-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 96a82c973224 by Victor Stinner in branch 'default': Issue #12049: test_ssl now checks also that RAND_bytes() raises an error if http://hg.python.org/cpython/rev/96a82c973224 -- ___ Python tracker

[issue12049] expose RAND_bytes() function of OpenSSL

2011-05-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset ca92fa2fe5c9 by Victor Stinner in branch 'default': Issue #12049: improve RAND_bytes() and RAND_pseudo_bytes() documentation http://hg.python.org/cpython/rev/ca92fa2fe5c9 -- ___ Python tracker

[issue12049] expose RAND_bytes() function of OpenSSL

2011-05-24 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue12049] expose RAND_bytes() function of OpenSSL

2011-05-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5c716437a83a by Victor Stinner in branch 'default': Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the ssl http://hg.python.org/cpython/rev/5c716437a83a -- nosy: +python-dev ___ Pyth

[issue12049] expose RAND_bytes() function of OpenSSL

2011-05-11 Thread STINNER Victor
STINNER Victor added the comment: ssl_rand.patch adds RAND_bytes() and RAND_pseudo_bytes() functions to the ssl module. I moved /dev/urandom to /dev/urandom.xxx and /dev/random to /dev/random.xxx to test RAND_bytes() error path. In this case, RAND_pseudo_bytes() generates non-cryptographic p

[issue12049] expose RAND_bytes() function of OpenSSL

2011-05-10 Thread John O'Connor
Changes by John O'Connor : -- nosy: +jcon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue12049] expose RAND_bytes() function of OpenSSL

2011-05-10 Thread STINNER Victor
New submission from STINNER Victor : The _ssl module has RAND_add() RAND_status() and RAND_egd() functions, but not RAND_bytes(). I would be nice to be able to generate random bytes using RAND_bytes(). And maybe also RAND_pseudo_bytes()? I will work on a patch, it's just a reminder.