| Commit message (Expand) | Author | Age | Files | Lines |
* | ansi |  jsg | 2021-03-06 | 1 | -2/+2 |
* | slight copyright update regarding recent work |  deraadt | 2020-06-15 | 1 | -2/+2 |
* | introduce "cpu_rnd_messybits" for use instead of nanotime in dev/rnd.c. |  dlg | 2020-05-31 | 1 | -4/+2 |
* | dev/rndvar.h no longer has statistical interfaces (removed during various |  deraadt | 2020-05-29 | 1 | -2/+1 |
* | 3 includes not needed |  deraadt | 2020-05-29 | 1 | -5/+1 |
* | Update comment block at the top to describe (a) the ring damage logic, |  deraadt | 2020-05-27 | 1 | -5/+8 |
* | Rewrite the entropy enqueue ring to collect damage asyncronously, and adapt the |  deraadt | 2020-05-26 | 1 | -72/+60 |
* | For large reads from /dev/random, use the arc4random_ctx_*() functions |  naddy | 2020-05-25 | 1 | -19/+13 |
* | Pass bootblock indicator RB_GOODRANDOM to random_start(). Future work |  deraadt | 2020-05-25 | 1 | -2/+9 |
* | During the rekey operation, we feedback 1 word to the lowest level. |  deraadt | 2020-05-18 | 1 | -2/+2 |
* | entropy_add_ptr and entropy_input_rotate are only used inside |  deraadt | 2020-05-16 | 1 | -3/+3 |
* | be more consistant about with using sizeof(object) rather than the constant |  deraadt | 2020-05-16 | 1 | -14/+14 |
* | Describe the purpose of add_entropy_words() in simpler terms. |  deraadt | 2020-05-15 | 1 | -12/+3 |
* | The description of the enqueue_randomness() input parameter was crazy untrue. |  deraadt | 2020-05-15 | 1 | -6/+2 |
* | Explain enqueue_randomness() better. It is the supply-entropy function, |  deraadt | 2020-05-15 | 1 | -2/+2 |
* | The long explanation for CRC stirring isn't helping. If anything |  deraadt | 2020-05-15 | 1 | -34/+1 |
* | The main comment block from 1996 has become highly inaccurate and |  deraadt | 2020-05-15 | 1 | -64/+17 |
* | remove unneccessary include files |  deraadt | 2020-05-15 | 1 | -5/+1 |
* | Make sure 'ts' is initialized. |  tobhe | 2020-03-06 | 1 | -1/+2 |
* | previous commit accidentally aliased two unique timeouts |  deraadt | 2020-03-02 | 1 | -4/+4 |
* | rename functions and types unrelated to the higher-level arc4 API |  deraadt | 2020-03-01 | 1 | -16/+16 |
* | Replace field f_isfd with field f_flags in struct filterops to allow |  visa | 2020-02-20 | 1 | -3/+3 |
* | Use C99 designated initializers with struct filterops. In addition, |  visa | 2019-12-31 | 1 | -5/+14 |
* | replace add_*_randomness with enqueue_randomness() |  jasper | 2018-04-28 | 1 | -15/+8 |
* | Situation occur where bootloader cannot supply kernel with early |  deraadt | 2018-02-09 | 1 | -1/+5 |
* | Do not hardcode key length. Pointed out by jsing@ |  mortimer | 2018-02-08 | 1 | -2/+2 |
* | Use a temporary chacha instance to fill large randomdata sections. Avoids |  mortimer | 2018-02-08 | 1 | -1/+36 |
* | Don't mention XOR as a mix-in function since addition is done since 1.180 |  mikeb | 2017-11-26 | 1 | -2/+2 |
* | Remove interlocks between producers and consumers of randomness data |  mikeb | 2017-11-19 | 1 | -38/+33 |
* | clang (and newer gcc at high -O) are unaware that objects placed in strange |  deraadt | 2017-07-30 | 1 | -3/+3 |
* | spelling and whitespace |  deraadt | 2017-03-15 | 1 | -3/+3 |
* | fix spelling errors and typos, from Michael W. Bombardieri |  deraadt | 2016-12-08 | 1 | -4/+3 |
* | when openbsd.randomdata was made readonly, the proto seed copy got done |  deraadt | 2016-10-18 | 1 | -10/+6 |
* | another unused variable bites the dust. spotted by deraadt |  tedu | 2016-10-07 | 1 | -4/+1 |
* | the old time delta code is no longer used. nothing reads these values. |  tedu | 2016-10-07 | 1 | -74/+2 |
* | kern.arandom no longer exists |  deraadt | 2016-09-23 | 1 | -4/+3 |
* | Stop pushing version & cfdata into as entropy, since the contents are |  deraadt | 2016-09-22 | 1 | -9/+1 |
* | Rototil the _rs_clearseed() function once more such that we don't map pages |  kettenis | 2016-09-04 | 1 | -20/+22 |
* | Since the initial entropy pool is 8192 bytes, we need three pages to create |  kettenis | 2016-09-03 | 1 | -13/+18 |
* | openbsd.randomdata became RO in userland due to the RELRO work. We should |  deraadt | 2016-09-01 | 1 | -3/+48 |
* | Remove unused re_nbits from dev/rnd.c |  tom | 2016-07-15 | 1 | -5/+1 |
* | remove the sysctl kern.random counters, since none of the remaining |  deraadt | 2016-05-23 | 1 | -12/+1 |
* | Change the random event buffer from a queue to an endless ring. This way |  tedu | 2016-05-17 | 1 | -25/+17 |
* | Right shift by an amount larger than width of type is undefined behavior. |  stefan | 2016-02-19 | 1 | -2/+2 |
* | Use uiomove() instead of uiomovei(). |  stefan | 2016-01-08 | 1 | -5/+5 |
* | use ulmin when looking at uio_resid to prevent wrapping around. |  tedu | 2015-12-28 | 1 | -3/+3 |
* | Sync chacha_ivsetup to the version in ssh so that we could |  mikeb | 2015-10-27 | 1 | -5/+5 |
* | missing word in comment; Kyle Milz |  deraadt | 2015-05-25 | 1 | -2/+2 |
* | use the size of the buffer not the pointer in resume_randomness() |  jsg | 2015-05-04 | 1 | -2/+2 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 1 | -2/+1 |