summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/crypto/arc4random_linux.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move _ARC4_ATFORK handlers from thread_private.h in portable.bcook2014-07-191-1/+9
|
* move _ARC4_LOCK/UNLOCK primitives from thread_private into OS-specific modulesbcook2014-07-191-1/+7
|
* fixup typosbcook2014-07-191-18/+18
|
* Change _rs_allocate so it can combine the two regions (rs and rsx)deraadt2014-07-191-15/+14
| | | | | | | | | | into one if a system has an awesome getentropy(). In that case it is valid to totally throw away the rsx state in the child. If the getentropy() is not very good and has a lazy reseed operation, this combining is a bad idea, and the reseed should probably continue to use the "something old, something new" mix. _rs_allocate() can accomodate either method, but not on the fly. ok matthew
* Cleanup portable arc4random fork detection code:matthew2014-07-181-11/+8
| | | | | | | | | | | | | | 1. Use "len" parameter instead of sizeof(*rs). 2. Simplify the atfork handler to be strictly async signal safe by simply writing to a global volatile sig_atomic_t object, and then checking for this in _rs_forkdetect(). (Idea from discussions with Szabolcs Nagy and Rich Felker.) 3. Use memset(rs, 0, sizeof(*rs)) to match OpenBSD's MAP_INHERIT_ZERO fork semantics to avoid any skew in behavior across platforms. ok deraadt
* Seperate arc4random's os-dependent parts into static inline functions,deraadt2014-07-181-0/+66
making it much easier for libressl -portable to fill in the gaps. ok bcook beck