summaryrefslogtreecommitdiff
path: root/security/lua-arc4random
AgeCommit message (Collapse)AuthorFilesLines
2021-10-26security: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes Unfetchable distfiles (fetched conditionally?): ./security/cyrus-sasl/distinfo cyrus-sasl-dedad73e5e7a75d01a5f3d5a6702ab8ccd2ff40d.patch.v2
2021-10-07security: Remove SHA1 hashes for distfilesnia1-2/+1
2020-07-14lua-arc4random: Update to 1.4.1nia3-39/+8
NetBSD and SunOS support upstreamed
2020-07-03attempt to fix build on SunOSnia1-1/+5
2020-07-02lua-arc4random: (untested) SunOS supportnia2-4/+17
2020-07-02lua-arc4random: ... correct LICENSEnia1-2/+2
2020-07-02lua-arc4random: Fix HOMEPAGEnia1-2/+2
2020-07-02security: Add lua-arc4randomnia5-0/+58
The arc4random family of functions provides a cryptographic pseudorandom number generator automatically seeded from the system entropy pool and safe to use from multiple threads. arc4random is designed to prevent an adversary from guessing outputs, unlike rand(3) and random(3), and is faster and more convenient than reading from /dev/urandom directly. This is a Lua wrapper for arc4random(3), portable to systems that do and don't have it natively in libc. On systems where arc4random may be insecure it provides a replacement.