Appropriate sources of entropy
Appropriate sources of entropy
Posted May 24, 2008 6:50 UTC (Sat) by ikm (guest, #493)In reply to: Appropriate sources of entropy by bronson
Parent article: Appropriate sources of entropy
This is not like the Debian's situation. If dubious randomness isn't accounted for as incoming entropy bits, /dev/random would block the same way as it would be blocking without any dubious randomness at all. As for /dev/urandom, without any external randomness /dev/urandom would be looping inside sha1 feedback, acting as a pure PRNG. Any kind of external randomness injected into that loop would only make its randomness better, it can't possible make it worse (due to crypto properties of sha1 you can't forge any correlation here). Point is, when good randomness dries up, what you're getting from /dev/urandom is a PRNG output. Any dubious randomness mixed in could only improve this situation. So, to answer your question, you really won't notice in both cases, but your randomness would be a bit better if you mix in some dubious stuff there as well. In the latter case, your chances of using dubious randomness (pure PRNG) are actually smaller.
