diff options
author | Theodore Ts'o <tytso@mit.edu> | 2016-06-12 18:13:36 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2016-07-03 00:57:23 -0400 |
commit | e192be9d9a30555aae2ca1dc3aad37cba484cd4a (patch) | |
tree | bfe62017802c309f831dc22c34b42ca39a354501 /lib/Makefile | |
parent | b1132deac01c2332d234fa821a70022796b79182 (diff) | |
download | linux-e192be9d9a30555aae2ca1dc3aad37cba484cd4a.tar.gz linux-e192be9d9a30555aae2ca1dc3aad37cba484cd4a.tar.bz2 linux-e192be9d9a30555aae2ca1dc3aad37cba484cd4a.zip |
random: replace non-blocking pool with a Chacha20-based CRNG
The CRNG is faster, and we don't pretend to track entropy usage in the
CRNG any more.
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 499fb354d627..34e205facfa3 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -22,7 +22,7 @@ KCOV_INSTRUMENT_hweight.o := n lib-y := ctype.o string.o vsprintf.o cmdline.o \ rbtree.o radix-tree.o dump_stack.o timerqueue.o\ idr.o int_sqrt.o extable.o \ - sha1.o md5.o irq_regs.o argv_split.o \ + sha1.o chacha20.o md5.o irq_regs.o argv_split.o \ flex_proportions.o ratelimit.o show_mem.o \ is_single_threaded.o plist.o decompress.o kobject_uevent.o \ earlycpio.o seq_buf.o nmi_backtrace.o nodemask.o |