-
Notifications
You must be signed in to change notification settings - Fork 31
Description
What is Entropy in Cryptography? ends with this paragraph:
A Linux machine that has sufficient entropy in its pool will usually contain 4096 bits of randomness. This is more than enough for several secure calculations to be performed. For perspective, a very strong private key typically contains 256 bits of entropy. If you want to see how much entropy your Linux machine currently has available, you can use the following command:
cat /proc/sys/kernel/random/entropy_avail
This makes the reader think the output for this command would be something close to 4096. But running this command after kernel update 5.10.119 will result in 256. Both entropy_avail and poolsize are capped at 256. This could cause confusion or worry, specially for beginners.
It would be good to update the paragraph with a more detailed explanation, maybe with a little history in it ("it used to be 4096 but that changed because...")
This article is quoted in a lesson ( I think it's in Learn Git, IIRC), so it would be good to be accurate for learning purposes.