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

enough to cause reseeding
This commit is contained in:
ache 2000-10-20 16:32:05 +00:00
parent 083aa30d63
commit 2ea359d7f6

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}