about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md46
1 files changed, 0 insertions, 46 deletions
diff --git a/README.md b/README.md
deleted file mode 100644
index 75c1c92..0000000
--- a/README.md
+++ /dev/null
@@ -1,46 +0,0 @@
-# rdd - random data dump
-
-rdd is a high-speed, cryptographically safe random data generator
-using the reference implementation of the eSTREAM Profile 1 SOSEMANUK
-stream cipher.
-
-It is designed to fill crypto devices with random data.
-
-This implementation passed dieharder 3.31.1 "-a" and
-PractRand/RNG_test 0.90 (tested up to 512 GB).
-
-## Usage
-
-	rdd [-i SOURCE] [-r REKEYMB] [-v]
-	   -i SOURCE     read key and IVs from SOURCE (/dev/urandom)
-	   -r REKEYMB    reload the IV every REKEYMB megabytes of output (4)
-           -v            print a . to stderr on every rekey
-
-Random binary data is outputted to stdout.  Better don't put a
-terminal there.
-rdd reads 32 bytes for the initial key and 16 bytes for every rekeying
-from the random source.  Setting REKEYMB to -1 never rekeys.
-
-## Copyright
-
-### rdd.c:
-
-To the extent possible under law, Christian Neukirchen has waived
-all copyright and related or neighboring rights to this work.
-
-http://creativecommons.org/publicdomain/zero/1.0/
-
-### sosemanuk.[ch]:
-
-This program includes code taken from
-http://www.ecrypt.eu.org/stream/p3ciphers/sosemanuk/sosemanuk_p3source.zip
-as of 13mar2013.  An error message which can never occur in rdd usage
-has been #ifdef'ed out.
-
-(c) 2005 X-CRYPT project. This software is provided 'as-is', without
-any express or implied warranty. In no event will the authors be held
-liable for any damages arising from the use of this software.
-
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to no restriction.