Assignent 1a,b
[sws1-1415.git] / ass2 / chris / sws1-s4109503-s4202015 / exercise1a.txt
1 The difference between /dev/urandom and /dev/random is that /dev/random has a
2 limited output. Since it uses the entropy of your system and if that
3 pool used is exhausted it needs new input from the system. While /dev/urandom
4 reuses data if the entropy pool is exhausted. So /dev/urandom is less random
5 than /dev/random, but it can be used as much as you want.