aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/random.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2021-04-02random: remove dead code left over from blocking poolEric Biggers1-14/+3
2021-04-02random: initialize ChaCha20 constants with correct endiannessEric Biggers1-2/+2
2021-02-24Merge tag 'char-misc-5.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-miscLinus Torvalds1-1/+1
2021-02-04random: fix the RNDRESEEDCRNG ioctlEric Biggers1-1/+1
2021-01-21random: avoid arch_get_random_seed_long() when collecting IRQ randomnessArd Biesheuvel1-14/+1
2020-11-20crypto: sha - split sha.h into sha1.h and sha2.hEric Biggers1-1/+1
2020-10-24random32: make prandom_u32() output unpredictableGeorge Spelvin1-1/+0
2020-07-29random32: update the net random state on interrupt and activityWilly Tarreau1-0/+1
2020-06-10Merge branch 'work.sysctl' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds1-1/+1
2020-06-08random: fix an incorrect __user annotation on proc_do_entropyChristoph Hellwig1-1/+1
2020-06-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextLinus Torvalds1-1/+1
2020-05-08crypto: lib/sha1 - fold linux/cryptohash.h into crypto/sha.hEric Biggers1-1/+1
2020-05-08crypto: lib/sha1 - rename "sha" to "sha1"Eric Biggers1-3/+3
2020-04-27sysctl: pass kernel pointers to ->proc_handlerChristoph Hellwig1-1/+1
2020-03-18random: avoid warnings for !CONFIG_NUMA buildsMark Rutland1-1/+1
2020-02-27random: fix data races at timer_rand_stateQian Cai1-6/+6
2020-02-27random: always use batched entropy for get_random_u{32,64}Jason A. Donenfeld1-16/+4
2020-02-27random: add arch_get_random_*long_early()Mark Rutland1-1/+19
2020-02-27random: split primary/secondary crng init pathsMark Rutland1-12/+22
2020-01-07random: remove some dead code of poolinfoYangtao Li1-30/+0
2020-01-07random: fix typo in add_timer_randomness()Yangtao Li1-1/+1
2020-01-07random: Add and use pr_fmt()Yangtao Li1-12/+11
2020-01-07random: convert to ENTROPY_BITS for better code readabilityYangtao Li1-3/+2
2020-01-07random: remove unnecessary unlikely()Yangtao Li1-4/+2
2020-01-07random: remove kernel.random.read_wakeup_thresholdAndy Lutomirski1-17/+1
2020-01-07random: delete code to pull data into poolsAndy Lutomirski1-40/+0
2020-01-07random: remove the blocking poolAndy Lutomirski1-106/+0
2020-01-07random: make /dev/random be almost like /dev/urandomAndy Lutomirski1-41/+14
2020-01-07random: ignore GRND_RANDOM in getentropy(2)Andy Lutomirski1-3/+0
2020-01-07random: add GRND_INSECURE to return best-effort non-cryptographic bytesAndy Lutomirski1-2/+9
2020-01-07random: Add a urandom_read_nowait() for random APIs that don't warnAndy Lutomirski1-6/+15
2020-01-07random: Don't wake crng_init_wait when crng_init == 1Andy Lutomirski1-1/+0
2020-01-07char/random: silence a lockdep splat with printk()Sergey Senozhatsky1-2/+3
2019-12-17random: don't forget compat_ioctl on urandomJason A. Donenfeld1-0/+1
2019-12-01Merge tag 'compat-ioctl-5.5' of git://git.kernel.org:/pub/scm/linux/kernel/git/arnd/playgroundLinus Torvalds1-0/+1
2019-11-16Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6Linus Torvalds1-3/+1
2019-11-17Revert "hwrng: core - Freeze khwrng thread during suspend"Herbert Xu1-3/+1
2019-10-23compat_ioctl: remove /dev/random commandsArnd Bergmann1-0/+1
2019-10-02char/random: Add a newline at the end of the fileBorislav Petkov1-1/+1
2019-09-29Merge branch 'entropy'Linus Torvalds1-1/+61
2019-09-29random: try to actively add entropy rather than passively wait for itLinus Torvalds1-1/+61
2019-09-18Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6Linus Torvalds1-1/+3
2019-09-09random: Use wait_event_freezable() in add_hwgenerator_randomness()Stephen Boyd1-7/+5
2019-08-23fdt: add support for rng-seedHsin-Yi Wang1-0/+14
2019-08-22random: Support freezable kthreads in add_hwgenerator_randomness()Stephen Boyd1-3/+7
2019-05-26random: fix soft lockup when trying to read from an uninitialized blocking poolTheodore Ts'o1-3/+13
2019-04-20random: add a spinlock_t to struct batched_entropySebastian Andrzej Siewior1-25/+27
2019-04-19random: document get_random_int() familyGeorge Spelvin1-7/+76
2019-04-19random: fix CRNG initialization when random.trust_cpu=1Jon DeVree1-1/+4
2019-04-19random: move rand_initialize() earlierKees Cook1-3/+2