From 704e663d6a48b85a2f39a32693d77d7a97fa0245 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 16 Nov 2015 02:06:21 +0100 Subject: [PATCH] Use /dev/urandom http://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers/ https://speakerdeck.com/filosottile/the-plain-simple-reality-of-entropy Also remove the iflag=fullblock GNUism that doesn't exist on BSD and OSX --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa3c62c..4814b15 100644 --- a/README.md +++ b/README.md @@ -16,5 +16,5 @@ To build and install the latest version: To create and use a new secret key: - $ dd if=/dev/random iflag=fullblock of=glorytun.key bs=32 count=1 + $ dd if=/dev/urandom of=glorytun.key bs=32 count=1 # glorytun keyfile glorytun.key [...]