Age | Commit message (Expand) | Author |
2014-02-05 | tiny style adjustments | Ted Unangst |
2014-01-22 | Emit a warning if no entropy was supplied by the boot loader. | Joel Sing |
2014-01-19 | Refactor rnd startup so arc4random/arc4random_buf can create a chacha state | Theo de Raadt |
2014-01-19 | With the earlier initialization of the random subsystem, random_hostseed() | Theo de Raadt |
2014-01-19 | In random_start() we can assume the msg buffer is mapped, all systems do | Theo de Raadt |
2013-12-28 | Put the entropy_pool[] into the ELF .openbsd.randomdata segment. | Theo de Raadt |
2013-12-22 | spacing; Loganaden Velvindron | Theo de Raadt |
2013-12-11 | Revert change to sha256: ramdisks don't build with this and the obvious | Philip Guenther |
2013-12-11 | update a few RC4 references to ChaCha. thanks sthen | Ted Unangst |
2013-12-11 | md5 smells bad. switch to sha256. ok deraadt matthew mikeb | Ted Unangst |
2013-11-02 | replace rc4 with ChaCha20 here, too; ok djm, tedu, deraadt | Markus Friedl |
2013-10-30 | replace workq_add_task with the task api. | David Gwynne |
2013-07-09 | Fix a pair of aesthetic nits in dev/rnd.c: | Bret Lambert |
2013-03-25 | reseed the random pool with 'dmesg' when more devices are attached | Markus Friedl |
2012-06-24 | Change arc4random_uniform() to calculate ``2**32 % upper_bound'' as | Matthew Dempsky |
2011-07-06 | Add a new kqfilter for random which returns ARC4_MAIN_MAX_BYTES for read | Nicholas Marriott |
2011-01-11 | bring back carrying over state from the previous RC4 instance when | Damien Miller |
2011-01-11 | all the bzeros in rnd are important, use explicit_bzero | Ted Unangst |
2011-01-10 | update the documentation regarding the *4 vs *6 decision for early RC4 | Theo de Raadt |
2011-01-10 | move comment block regarding ARC4_MAIN_MAX_BYTES | Theo de Raadt |
2011-01-10 | randomread does its own rekeying now, so we don't need the large buf function. | Ted Unangst |
2011-01-10 | OK, this is getting silly, but we might as well zero the entropy buffer | Theo de Raadt |
2011-01-10 | zero another intermediate key storage area | Theo de Raadt |
2011-01-09 | be more careful with nanotime() calls in early entropy storage, since | Theo de Raadt |
2011-01-08 | split randomattach into random_init() and random_start(), so that we | Theo de Raadt |
2011-01-08 | spaces | Theo de Raadt |
2011-01-08 | switch back from PAGE_SIZE for the sake of sparc | Theo de Raadt |
2011-01-08 | destatic. ok deraadt | Ted Unangst |
2011-01-07 | some minor improvements to rnd. | Ted Unangst |
2011-01-07 | substantial rewrite. put a very thin mutex at the entropy-collection | Theo de Raadt |
2011-01-07 | since randomwrite() also has no blocking operations at all, we need to | Theo de Raadt |
2011-01-06 | For very large operations in randomread(), use a local rc4 instance | Theo de Raadt |
2011-01-06 | make all /dev/*random nodes respond; in fact, don't even worry about | Theo de Raadt |
2011-01-04 | in arc4_stir() only grab 64 bytes from the MD5 output. Grabbing more | Theo de Raadt |
2011-01-01 | Do not fold the MD5 in half. This might have made sense to someone when | Theo de Raadt |
2011-01-01 | comment cleanup | Theo de Raadt |
2010-12-31 | make randomattach do the parts of it's job in the right order, then move | Theo de Raadt |
2010-12-31 | cleanup the ioctl function | Theo de Raadt |
2010-12-31 | delete includes we do not need | Theo de Raadt |
2010-12-31 | further improvements describing what we are doing | Theo de Raadt |
2010-12-31 | all random nodes have been arc4-based for a while, so none of them ever | Theo de Raadt |
2010-12-30 | be more cynical about boot-time entropy, and fold time and entropy data in. | Theo de Raadt |
2010-12-29 | knf | Theo de Raadt |
2010-12-29 | Since there is only one random_state, we can access it directly without | Theo de Raadt |
2010-12-29 | arc4random_count is not used; other things inside rndstats do the accounting | Theo de Raadt |
2010-12-29 | the rnd_debug stuff was not useful | Theo de Raadt |
2010-12-29 | kill RND_ARND_OLD, and decrease RND_NODEV to account for it; ok djm | Theo de Raadt |
2010-12-29 | Remove the get_random_bytes() API. | Theo de Raadt |
2010-12-29 | the random ioctl stuff is not very useful. I want to see all the | Theo de Raadt |
2010-12-24 | try to update the monster comment at the top of this file to explain | Theo de Raadt |