From 420728c56820009ab1d7dcd05c6fa12ed03aeda8 Mon Sep 17 00:00:00 2001 From: markm Date: Sat, 4 Nov 1995 09:50:48 +0000 Subject: Add the test programs that I tested the /dev/random driver with. --- tools/test/devrandom/hammer.random | 23 +++++++++++++++++++++++ tools/test/devrandom/hammer.urandom | 27 +++++++++++++++++++++++++++ tools/test/devrandom/stat.16bit | 29 +++++++++++++++++++++++++++++ tools/test/devrandom/stat.8bit | 29 +++++++++++++++++++++++++++++ 4 files changed, 108 insertions(+) create mode 100644 tools/test/devrandom/hammer.random create mode 100644 tools/test/devrandom/hammer.urandom create mode 100644 tools/test/devrandom/stat.16bit create mode 100644 tools/test/devrandom/stat.8bit (limited to 'tools') diff --git a/tools/test/devrandom/hammer.random b/tools/test/devrandom/hammer.random new file mode 100644 index 0000000..a619816 --- /dev/null +++ b/tools/test/devrandom/hammer.random @@ -0,0 +1,23 @@ +#!/usr/bin/perl + +# +# Test program for /dev/random +# Read and display random numbers. +# Try tapping shift/alt/ctrl to get more randomness. +# +# $Id$ +# + +for (;;) { + open(BIN, "/dev/random") || die "Cannot open /dev/random - $!\n"; + $len = sysread(BIN, $a, 128); + close(BIN); + if ($len > 0) { + print "$len bytes read: "; + for ($j = 0; $j < $len; $j++) { + $k = unpack("C", substr($a, $j, 1)); + printf("%.2X ", $k); + } + printf "\n"; + } +} diff --git a/tools/test/devrandom/hammer.urandom b/tools/test/devrandom/hammer.urandom new file mode 100644 index 0000000..4e434fa --- /dev/null +++ b/tools/test/devrandom/hammer.urandom @@ -0,0 +1,27 @@ +#!/usr/bin/perl + +# +# Test program for /dev/urandom +# Read and display random numbers. +# This also reads /dev/zero to make sure there is no brokenness there. +# +# $Id$ +# + +open(ZERO, "/dev/zero") || die "Cannot open /dev/zero - $!\n"; + +for (;;) { + open(BIN, "/dev/urandom"); + $len = sysread(BIN, $a, 20); + sysread(ZERO, $b, 20); + close(BIN); + if ($len > 0) { + for ($j = 0; $j < $len; $j += 2) { + $k = unpack("S", substr($a, $j, 2)); + $z = unpack("S", substr($b, $j, 2)); + $z == 0 || die "/dev/zero is returning non-zero!\n"; + printf("%.4X ", $k); + } + printf "\n"; + } +} diff --git a/tools/test/devrandom/stat.16bit b/tools/test/devrandom/stat.16bit new file mode 100644 index 0000000..83398d5 --- /dev/null +++ b/tools/test/devrandom/stat.16bit @@ -0,0 +1,29 @@ +#!/usr/bin/perl + +# +# Perform primitive binning into 16-bit bins (take 16bits of randomness +# at a time) and see if the distribution is flat. The output should be +# checked by eye - are all the numbers roughly the same? +# +# Redirect the output from this to a file - and go to the movies while +# it runs. This program is a CPU Hog! +# +# $Id$ +# + +for ($i = 0; $i < (1024*64); $i++) { + open(BIN, "/dev/urandom") || die "Cannot open /dev/urandom - $!\n"; + $len = sysread(BIN, $a, 512); + close(BIN); + if ($len > 0) { + for ($j = 0; $j < $len; $j += 2) { + $k = unpack("S", substr($a, $j, 2)); + $bin[$k]++; + } + } +} + +for ($i = 0; $i < 1024*64; $i++) { + printf("%.2X ", $bin[$i]); +} +printf "\n"; diff --git a/tools/test/devrandom/stat.8bit b/tools/test/devrandom/stat.8bit new file mode 100644 index 0000000..5c304cb --- /dev/null +++ b/tools/test/devrandom/stat.8bit @@ -0,0 +1,29 @@ +#!/usr/bin/perl + +# +# Perform primitive binning into 8-bit bins (take 8 bits of randomness +# at a time) and see if the distribution is flat. The output should be +# checked by eye - are all the numbers roughly the same? +# +# Redirect the output from this to a file - and make a cup of coffee while +# it runs. This program is a CPU Hog! +# +# $Id$ +# + +for ($i = 0; $i < (1024*32); $i++) { + open(BIN, "/dev/urandom") || die "Cannot open /dev/urandom - $!\n"; + $len = sysread(BIN, $a, 256); + close(BIN); + if ($len > 0) { + for ($j = 0; $j < $len; $j++) { + $k = unpack("C", substr($a, $j, 1)); + $bin[$k]++; + } + } +} + +for ($i = 0; $i < 256; $i++) { + printf("%.2X ", $bin[$i]); +} +printf "\n"; -- cgit v1.1