index
:
linux
master
linux
Fast-forward packages
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
drivers
/
char
/
random.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
random: ensure early RDSEED goes through mixer on init
Jason A. Donenfeld
2022-02-21
1
-11
/
+5
*
|
random: inline leaves of rand_initialize()
Jason A. Donenfeld
2022-02-21
1
-57
/
+33
*
|
random: get rid of secondary crngs
Jason A. Donenfeld
2022-02-21
1
-172
/
+53
*
|
random: use RDSEED instead of RDRAND in entropy extraction
Jason A. Donenfeld
2022-02-21
1
-13
/
+9
*
|
random: fix locking in crng_fast_load()
Dominik Brodowski
2022-02-21
1
-2
/
+3
*
|
random: remove batched entropy locking
Jason A. Donenfeld
2022-02-21
1
-27
/
+28
*
|
random: remove use_input_pool parameter from crng_reseed()
Eric Biggers
2022-02-21
1
-6
/
+6
*
|
random: make credit_entropy_bits() always safe
Jason A. Donenfeld
2022-02-21
1
-20
/
+9
*
|
random: always wake up entropy writers after extraction
Jason A. Donenfeld
2022-02-21
1
-22
/
+11
*
|
random: use linear min-entropy accumulation crediting
Jason A. Donenfeld
2022-02-21
1
-94
/
+20
*
|
random: simplify entropy debiting
Jason A. Donenfeld
2022-02-21
1
-70
/
+21
*
|
random: use computational hash for entropy extraction
Jason A. Donenfeld
2022-02-21
1
-249
/
+55
*
|
random: only call crng_finalize_init() for primary_crng
Dominik Brodowski
2022-02-04
1
-5
/
+5
*
|
random: access primary_pool directly rather than through pointer
Dominik Brodowski
2022-02-04
1
-7
/
+7
*
|
random: wake up /dev/random writers after zap
Jason A. Donenfeld
2022-02-04
1
-1
/
+4
*
|
random: continually use hwgenerator randomness
Dominik Brodowski
2022-02-04
1
-4
/
+6
|
/
*
random: move the random sysctl declarations to its own file
Xiaoming Ni
2022-01-22
1
-2
/
+12
*
random: simplify arithmetic function flow in account()
Jason A. Donenfeld
2022-01-18
1
-11
/
+6
*
random: selectively clang-format where it makes sense
Jason A. Donenfeld
2022-01-18
1
-110
/
+99
*
random: access input_pool_data directly rather than through pointer
Jason A. Donenfeld
2022-01-18
1
-13
/
+8
*
random: cleanup fractional entropy shift constants
Jason A. Donenfeld
2022-01-18
1
-15
/
+13
*
random: prepend remaining pool constants with POOL_
Jason A. Donenfeld
2022-01-18
1
-20
/
+20
*
random: de-duplicate INPUT_POOL constants
Jason A. Donenfeld
2022-01-18
1
-11
/
+6
*
random: remove unused OUTPUT_POOL constants
Jason A. Donenfeld
2022-01-18
1
-3
/
+1
*
random: rather than entropy_store abstraction, use global
Jason A. Donenfeld
2022-01-18
1
-123
/
+96
*
random: remove unused extract_entropy() reserved argument
Jason A. Donenfeld
2022-01-18
1
-10
/
+7
*
random: remove incomplete last_data logic
Jason A. Donenfeld
2022-01-18
1
-35
/
+4
*
random: cleanup integer types
Jason A. Donenfeld
2022-01-18
1
-53
/
+52
*
random: cleanup poolinfo abstraction
Jason A. Donenfeld
2022-01-18
1
-37
/
+30
*
random: fix typo in comments
Schspa Shi
2022-01-18
1
-1
/
+1
*
random: don't reset crng_init_cnt on urandom_read()
Jann Horn
2022-01-07
1
-4
/
+0
*
random: avoid superfluous call to RDRAND in CRNG extraction
Jason A. Donenfeld
2022-01-07
1
-3
/
+1
*
random: early initialization of ChaCha constants
Dominik Brodowski
2022-01-07
1
-1
/
+4
*
random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs
Jason A. Donenfeld
2022-01-07
1
-19
/
+11
*
random: harmonize "crng init done" messages
Dominik Brodowski
2022-01-07
1
-1
/
+1
*
random: mix bootloader randomness into pool
Jason A. Donenfeld
2022-01-07
1
-0
/
+1
*
random: do not throw away excess input to crng_fast_load
Jason A. Donenfeld
2022-01-07
1
-7
/
+12
*
random: do not re-init if crng_reseed completes before primary init
Jason A. Donenfeld
2022-01-07
1
-1
/
+1
*
random: fix crash on multiple early calls to add_bootloader_randomness()
Dominik Brodowski
2022-01-07
1
-20
/
+36
*
random: do not sign extend bytes for rotation when mixing
Jason A. Donenfeld
2022-01-07
1
-1
/
+1
*
random: use BLAKE2s instead of SHA1 in extraction
Jason A. Donenfeld
2022-01-07
1
-41
/
+30
*
random: fix data race on crng init time
Eric Biggers
2022-01-07
1
-7
/
+10
*
random: fix data race on crng_node_pool
Eric Biggers
2022-01-07
1
-20
/
+22
*
random: remove unused irq_flags argument from add_interrupt_randomness()
Sebastian Andrzej Siewior
2022-01-07
1
-2
/
+2
*
random: document add_hwgenerator_randomness() with other input functions
Mark Brown
2022-01-07
1
-0
/
+11
*
random: remove dead code left over from blocking pool
Eric Biggers
2021-04-02
1
-14
/
+3
*
random: initialize ChaCha20 constants with correct endianness
Eric Biggers
2021-04-02
1
-2
/
+2
*
Merge tag 'char-misc-5.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/g...
Linus Torvalds
2021-02-24
1
-1
/
+1
|
\
|
*
random: fix the RNDRESEEDCRNG ioctl
Eric Biggers
2021-02-04
1
-1
/
+1
*
|
random: avoid arch_get_random_seed_long() when collecting IRQ randomness
Ard Biesheuvel
2021-01-21
1
-14
/
+1
|
/
[prev]
[next]