Age | Commit message (Expand) | Author |
2016-07-15 | Remove unused re_nbits from dev/rnd.c | Tom Cosgrove |
2016-05-23 | remove the sysctl kern.random counters, since none of the remaining | Theo de Raadt |
2016-05-17 | Change the random event buffer from a queue to an endless ring. This way | Ted Unangst |
2016-02-19 | Right shift by an amount larger than width of type is undefined behavior. | Stefan Kempf |
2016-01-08 | Use uiomove() instead of uiomovei(). | Stefan Kempf |
2015-12-28 | use ulmin when looking at uio_resid to prevent wrapping around. | Ted Unangst |
2015-10-27 | Sync chacha_ivsetup to the version in ssh so that we could | Mike Belopuhov |
2015-05-25 | missing word in comment; Kyle Milz | Theo de Raadt |
2015-05-04 | use the size of the buffer not the pointer in resume_randomness() | Jonathan Gray |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2015-02-17 | the rnd event ringbuf calculations aren't correct, which may result in | Ted Unangst |
2015-02-10 | First step towards making uiomove() take a size_t size argument: | Miod Vallat |
2015-02-07 | New framework that allows hibernate to pass in entropy from it's fresh | Theo de Raadt |
2015-01-27 | remove the second void * argument on tasks. | David Gwynne |
2014-12-23 | not necessary to zero hash context; the hash final functions all do that. | Ted Unangst |
2014-12-23 | tmp is a bad name for a shactx | Ted Unangst |
2014-12-19 | rename buffer to digest, more clear. ok deraadt | Ted Unangst |
2014-12-19 | sha512 produces enough output, we can simplify extraction by not looping. | Ted Unangst |
2014-12-18 | Create a suspend/resume infrastructure for the RNG. At suspend time, | Theo de Raadt |
2014-10-24 | obvious sizes for free | Ted Unangst |
2014-10-20 | typo; deraadt | Ted Unangst |
2014-10-20 | use SHA512 to hash entropy instead of MD5 | Ted Unangst |
2014-09-15 | update comments to reflect chacha20. from Max Fillinger | Ted Unangst |
2014-07-17 | zero entropy buf | Ted Unangst |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-06-14 | Change return value of getentropy() to int 0 for success. Maximum | Theo de Raadt |
2014-06-13 | Add new getentropy() system call. Code and pressure from matthew. | Theo de Raadt |
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 |