From: Chris Date: Sun, 8 Feb 2015 21:27:59 +0000 (+0100) Subject: Begonnen aan tweede excersise X-Git-Url: https://git.martlubbers.net/?a=commitdiff_plain;h=be398a64ffa4e621877527a43644428e48e8d55e;p=sws1-1415.git Begonnen aan tweede excersise --- diff --git a/ass2/chris/exercise1a.txt b/ass2/chris/exercise1a.txt new file mode 100644 index 0000000..76ca454 --- /dev/null +++ b/ass2/chris/exercise1a.txt @@ -0,0 +1,5 @@ +The difference between /dev/urandom and /dev/random is that /dev/random has a +limited output. Since it uses the entropy of your system and if that +pool used is exhausted it needs new input from the system. While /dev/urandom +reuses data if the entropy pool is exhausted. So /dev/urandom is less random +than /dev/random, but it can be used as much as you want.