Begonnen aan tweede excersise
authorChris <mail@chriskamphuis.com>
Sun, 8 Feb 2015 21:27:59 +0000 (22:27 +0100)
committerChris <mail@chriskamphuis.com>
Sun, 8 Feb 2015 21:27:59 +0000 (22:27 +0100)
ass2/chris/exercise1a.txt [new file with mode: 0644]

diff --git a/ass2/chris/exercise1a.txt b/ass2/chris/exercise1a.txt
new file mode 100644 (file)
index 0000000..76ca454
--- /dev/null
@@ -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.