Current Path : /usr/local/lib/perl5/site_perl/5.8.9/Crypt/Random/Provider/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/local/lib/perl5/site_perl/5.8.9/Crypt/Random/Provider/devrandom.pm |
#!/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;