Perl Interface to the Quantum Random Bit Generator Service
The Quantum Random Bit Generator Service at http://random.irb.hr/ is a free service that provide truly random data that is useful for scientific and advanced mathmatics applications.
The providers of the service have Windows and Linux binaries and provide source code for them. I thought a Perl module that interfaces with it might be useul to somebody.
Sample Usage
use Data::Random::QRBGS;
$qrbgs = new Data::Random::QRBGS('username', 'password');
@ints = $qrbgs->get(4);
print "Got random integers: @ints\n";
@shorts = $qrbgs->get(2, 's');
print "Got random shorts: @shorts\n";
$bytes = $qrbgs->getraw(1024);