
Math::RandomOrg - Retrieve random numbers and data from random.org.

use Math::RandomOrg qw(randnum randbyte); my $number = randnum(0, 10); my $octet = randbyte(1);

Math::RandomOrg provides functions for retrieving random data from the random.org server. Data may be retrieved in an integer or byte-stream format using the randnum and randbyte functions respectively.


None by default. You may request the following symbols be exported:

randnum ( $min, $max )Return an integer (specifically a Math::BigInt object) between the bounds [ $min, $max ] (inclusive).
By default, $max and $min are positive and negative 1e9, respectively. These default values represent random.org's current extrema for the bounds of the randnum function. Therefore, $min and $max may not exceed the default values.
randbyte ( $length )Returns an octet-string of specified length (defaults to one byte), which contains random bytes.
$length may not exceed 16,384, as this is the maximum number of bytes retrievable from the random.org server in one request, and making multiple requests for an unbounded amount of data would unfairly tax the random.org server. If you need large amounts of random data, you may wish to try the Math::TrulyRandom module.
randseq ( $min, $max )The randseq script returns a randomized sequence of numbers. This corresponds to dropping a number of lottery tickets into a hat and drawing them out in random order. Hence, each number in a randomized sequence occurs exactly once.
Example: randseq(1, 10) will return the numbers between 1 and 10 (both inclusive) in a random order.
quota_bitsReturns the number of bits of random data still available under this computer's IP address quota. The quota is (as of this writing on 2009-01-12) 1,000,000 bits, replenishing 200,000 bits per 24 hour period up to a 1,000,000 bit maximum. See http://random.org/quota/ for more information.
checkbuf()This routine takes no parameters and simply returns a single value (e.g., 28) telling you how full the buffer is (out of 100). A value of 100 indicates a full buffer, and you are free to hit it with automated clients. At 0%, the buffer is empty and requests will hang. When less than 100%, the buffer is being filled continually, but doing so takes time.


Copyright (c) 2001-2009 Gregory Todd Williams. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Gregory Todd Williams <gwilliams@cpan.org>