Age | Commit message (Expand) | Author |
2017-03-15 | spelling and whitespace | Theo de Raadt |
2016-12-08 | fix spelling errors and typos, from Michael W. Bombardieri | Theo de Raadt |
2016-10-18 | when openbsd.randomdata was made readonly, the proto seed copy got done | Theo de Raadt |
2016-10-07 | another unused variable bites the dust. spotted by deraadt | Ted Unangst |
2016-10-07 | the old time delta code is no longer used. nothing reads these values. | Ted Unangst |
2016-09-23 | kern.arandom no longer exists | Theo de Raadt |
2016-09-22 | Stop pushing version & cfdata into as entropy, since the contents are | Theo de Raadt |
2016-09-04 | Rototil the _rs_clearseed() function once more such that we don't map pages | Mark Kettenis |
2016-09-03 | Since the initial entropy pool is 8192 bytes, we need three pages to create | Mark Kettenis |
2016-09-01 | openbsd.randomdata became RO in userland due to the RELRO work. We should | Theo de Raadt |
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 |