[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
xampp182
/
perl
/
vendor
/
lib
/
Crypt
/
Random
/
Provider
/
[
Home
]
File: devurandom.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: devurandom.pm,v 1.2 2001/06/22 18:16:29 vipul Exp $ package Crypt::Random::Provider::devurandom; 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/urandom" } 1;