summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/crypto/arc4random_netbsd.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove the libcrypto/crypto directorybeck2016-09-031-87/+0
|
* Tighten behavior of _rs_allocate failure for portable arc4random ↵bcook2016-06-301-1/+2
| | | | | | | | | | implementations. In the event of a failure in _rs_allocate for rsx, we still have a reference to freed memory for rs on return. Not a huge deal since we subsequently abort in _rs_init, but it looks strange on its own. ok deraadt@
* unify files furtherderaadt2015-09-111-4/+4
|
* Add arc4random/getentropy shims for NetBSD.bcook2015-01-191-0/+86
The latest NetBSD (6.1.5) arc4random does not appear to reseed the CRNG state after a fork, so provide an override until the fork-safe version in CVS appears in a release. These are the same as the FreeBSD shims. ok deraadt@