diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Crypt/Random/Provider/devrandom.pm')
-rwxr-xr-x | Master/tlpkg/tlperl/lib/Crypt/Random/Provider/devrandom.pm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/lib/Crypt/Random/Provider/devrandom.pm b/Master/tlpkg/tlperl/lib/Crypt/Random/Provider/devrandom.pm new file mode 100755 index 00000000000..a25f59ab14c --- /dev/null +++ b/Master/tlpkg/tlperl/lib/Crypt/Random/Provider/devrandom.pm @@ -0,0 +1,21 @@ +#!/usr/bin/perl -sw +## +## +## +## Copyright (c) 2001, Vipul Ved Prakash. All rights reserved. +## This code is free software; you can redistribute it and/or modify +## it under the same terms as Perl itself. +## +## $Id: devrandom.pm,v 1.2 2001/06/22 18:16:29 vipul Exp $ + +package Crypt::Random::Provider::devrandom; +use strict; +use lib qw(lib); +use Crypt::Random::Provider::File; +use vars qw(@ISA); +@ISA = qw(Crypt::Random::Provider::File); + +sub _defaultsource { return "/dev/random" } + +1; + |