summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhwrand.pl8
-rwxr-xr-xhwrand.py7
2 files changed, 0 insertions, 15 deletions
diff --git a/hwrand.pl b/hwrand.pl
deleted file mode 100755
index 87fd667..0000000
--- a/hwrand.pl
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/perl
-open my $hw, "</dev/hwrng" and open my $rnd, "</dev/random" or die;
-for (;;) {
- my $l = read $hw, my $d, 512;
- ioctl $rnd, 0x40085203, pack("ii", 4 * $l, $l) . $d or die;
- vec(my $w, fileno $rnd, 1) = 1;
- select undef, $w, undef, undef
-}
diff --git a/hwrand.py b/hwrand.py
deleted file mode 100755
index 92016a1..0000000
--- a/hwrand.py
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/usr/bin/env python
-import fcntl, select, struct
-with open('/dev/hwrng', 'rb') as hw, open('/dev/random') as rnd:
- while True:
- d = hw.read(512)
- fcntl.ioctl(rnd, 0x40085203, struct.pack('ii', 4 * len(d), len(d)) + d)
- select.select([], [rnd], [])