Increase entropy file size from 4096 to 16384 because 4096 actually is not

enough to cause reseeding
This commit is contained in:
Andrey A. Chernov 2000-10-20 16:32:05 +00:00
parent 69ad30ba3a
commit 2af8bc5b22

View File

@ -78,7 +78,7 @@ case ${entropy_file} in
;;
*)
dd if=/dev/random of=${entropy_file_confirmed} \
bs=4096 count=1 2> /dev/null
bs=16384 count=1 2> /dev/null
;;
esac
umask ${oumask}