The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Random::QRBG - Gather random data from the QRBG Service

VERSION

Version 0.02

SYNOPSIS

Module retrieves random data from the QRBG Service

    use Net::Random::QRBG;

    my $foo = Net::Random::QRBG->new();
    my $integer = $foo->getInt();

FUNCTIONS

new

credentials( $user, $pass )

Get/Set user login details

setCache( $cache_size )

Get/Set the cacheSize

getChar( $sign )

Returns one char (8-bit) value. Default signed, pass any value for unsigned.

getHexChar ( $end )

Return hex char. Default Big-Ended, pass any value for Little-Ended

getShort( $sign )

Returns one short (16-bits) value. Default signed, pass any value for unsigned.

getLong( $sign )

Returns one long (32-bit) value. Default signed, pass any value for unsigned.

getQuad( $sign )

Returns one quad (64-bit) value. Default signed, pass any value for unsigned.

getInt ( $sign )

Return integer (Dependent on architecture) Default signed, pass any value for unsigned.

errstr( )

Return last error

AUTHOR

Brent Garber, <overlordq at gmail.com>

BUGS

Please report any bugs or feature requests to bug-net-random-qrbg at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-Random-QRBG. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Net::Random::QRBG

You can also look for information at:

ACKNOWLEDGEMENTS

Yea, the POD sucks. I'll fix it eventually.

COPYRIGHT & LICENSE

Copyright 2009 Brent Garber, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.