| Commit message (Expand) | Author | Age | Files | Lines |
| * | Change arc4random_uniform() to calculate ``2**32 % upper_bound'' as |  matthew | 2012-06-24 | 1 | -12/+3 |
| * | Add a new kqfilter for random which returns ARC4_MAIN_MAX_BYTES for read |  nicm | 2011-07-06 | 1 | -4/+50 |
| * | bring back carrying over state from the previous RC4 instance when |  djm | 2011-01-11 | 1 | -1/+7 |
| * | all the bzeros in rnd are important, use explicit_bzero |  tedu | 2011-01-11 | 1 | -10/+10 |
| * | update the documentation regarding the *4 vs *6 decision for early RC4 |  deraadt | 2011-01-10 | 1 | -7/+11 |
| * | move comment block regarding ARC4_MAIN_MAX_BYTES |  deraadt | 2011-01-10 | 1 | -8/+8 |
| * | randomread does its own rekeying now, so we don't need the large buf function. |  tedu | 2011-01-10 | 1 | -27/+1 |
| * | OK, this is getting silly, but we might as well zero the entropy buffer |  deraadt | 2011-01-10 | 1 | -1/+2 |
| * | zero another intermediate key storage area |  deraadt | 2011-01-10 | 1 | -1/+2 |
| * | be more careful with nanotime() calls in early entropy storage, since |  deraadt | 2011-01-09 | 1 | -7/+9 |
| * | split randomattach into random_init() and random_start(), so that we |  deraadt | 2011-01-08 | 1 | -3/+19 |
| * | spaces |  deraadt | 2011-01-08 | 1 | -7/+7 |
| * | switch back from PAGE_SIZE for the sake of sparc |  deraadt | 2011-01-08 | 1 | -4/+4 |
| * | destatic. ok deraadt |  tedu | 2011-01-08 | 1 | -12/+13 |
| * | some minor improvements to rnd. |  tedu | 2011-01-07 | 1 | -61/+28 |
| * | substantial rewrite. put a very thin mutex at the entropy-collection |  deraadt | 2011-01-07 | 1 | -327/+228 |
| * | since randomwrite() also has no blocking operations at all, we need to |  deraadt | 2011-01-07 | 1 | -1/+3 |
| * | For very large operations in randomread(), use a local rc4 instance |  deraadt | 2011-01-06 | 1 | -6/+22 |
| * | make all /dev/*random nodes respond; in fact, don't even worry about |  deraadt | 2011-01-06 | 1 | -23/+7 |
| * | in arc4_stir() only grab 64 bytes from the MD5 output. Grabbing more |  deraadt | 2011-01-04 | 1 | -2/+2 |
| * | Do not fold the MD5 in half. This might have made sense to someone when |  deraadt | 2011-01-01 | 1 | -18/+2 |
| * | comment cleanup |  deraadt | 2011-01-01 | 1 | -24/+3 |
| * | make randomattach do the parts of it's job in the right order, then move |  deraadt | 2010-12-31 | 1 | -25/+28 |
| * | cleanup the ioctl function |  deraadt | 2010-12-31 | 1 | -9/+4 |
| * | delete includes we do not need |  deraadt | 2010-12-31 | 1 | -3/+1 |
| * | further improvements describing what we are doing |  deraadt | 2010-12-31 | 1 | -22/+14 |
| * | all random nodes have been arc4-based for a while, so none of them ever |  deraadt | 2010-12-31 | 1 | -92/+1 |
| * | be more cynical about boot-time entropy, and fold time and entropy data in. |  deraadt | 2010-12-30 | 1 | -13/+24 |
| * | knf |  deraadt | 2010-12-29 | 1 | -5/+5 |
| * | Since there is only one random_state, we can access it directly without |  deraadt | 2010-12-29 | 1 | -20/+18 |
| * | arc4random_count is not used; other things inside rndstats do the accounting |  deraadt | 2010-12-29 | 1 | -6/+1 |
| * | the rnd_debug stuff was not useful |  deraadt | 2010-12-29 | 1 | -19/+2 |
| * | kill RND_ARND_OLD, and decrease RND_NODEV to account for it; ok djm |  deraadt | 2010-12-29 | 1 | -2/+1 |
| * | Remove the get_random_bytes() API. |  deraadt | 2010-12-29 | 1 | -16/+2 |
| * | the random ioctl stuff is not very useful. I want to see all the |  deraadt | 2010-12-29 | 1 | -49/+1 |
| * | try to update the monster comment at the top of this file to explain |  deraadt | 2010-12-24 | 1 | -84/+17 |
| * | rewrite randomwrite() for clarity after discussion with mikeb |  deraadt | 2010-12-22 | 1 | -10/+14 |
| * | adding timer randomness in ioctl doesn't really help and looks suspicious. |  tedu | 2010-11-21 | 1 | -4/+1 |
| * | remove support for srandom and urandom. direct everyone to arandom instead. |  tedu | 2010-10-02 | 1 | -42/+4 |
| * | remove proc.h include from uvm_map.h. This has far reaching effects, as |  tedu | 2010-04-20 | 1 | -2/+1 |
| * | Every selwakeup() should have a matching KNOTE() (even if kqueue isn't |  nicm | 2009-11-09 | 1 | -2/+1 |
| * | Sanity check: we overrun the rnd_ed[] array if nbits is 32, but that |  guenther | 2009-06-05 | 1 | -1/+5 |
| * | remove i386-only inline assembler roll() function; gcc optimises the |  djm | 2008-12-15 | 1 | -14/+3 |
| * | extra decl not needed; spotted by djm |  deraadt | 2008-11-24 | 1 | -3/+1 |
| * | allow entropy to be queued before randomattach() is called |  deraadt | 2008-11-24 | 1 | -9/+16 |
| * | Seed the random pool with the dmesg buffer at randomattach(). |  mpf | 2008-11-24 | 1 | -6/+8 |
| * | kernel/5592: yield() between copying out large chunks of random data to |  djm | 2008-10-15 | 1 | -2/+5 |
| * | minor 3 was /dev/prandom, which used random(). make that use the |  deraadt | 2008-10-10 | 1 | -10/+6 |
| * | Convert timeout_add() calls using multiples of hz to timeout_add_sec() |  blambert | 2008-09-10 | 1 | -3/+2 |
| * | correct long since bitrotted comments |  djm | 2008-06-11 | 1 | -24/+23 |