Data::Rand - Efficient cryptographically strong random strings and lists of [un]given length and data.


NAME

Data::Rand - Efficient cryptographically strong random strings and lists of [un]given length and data.


VERSION

This document describes Data::Rand version 0.0.2


SYNOPSIS

    use Data::Rand;
        my $rand_32_str = rand_data();
    my $rand_64_str = rand_data(64);
        my @contestants = rand_data( 2, \@studio_audience, { 'do_not_repeat_index' => 1 } );
        my $doubledigit = rand_data( 2, [0 .. 9] );
        
        my @rolled_dice = rand_data( 2, [1 .. 6] );
    my $pickanumber = rand_data( 1, [1 .. 1000] );


DESCRIPTION

Simple interface to efficiently get cryptographically strong randomized data.


EXPORT

rand_data() is exported by default. rand_data_string() and rand_data_array() are exportable.


INTERFACE

rand_data()

In scalar context returns a string made of a number of parts you want made up from an array of parts.

In array context it returns a list the length of number of parts you want where each item is from the array of parts.

Takes 0 to 3 arguments:

  1. ) length or number of random parts (default if not given or invalid is 32)
  2. ) array ref of parts (default if not given or invalid is 0 .. 9 and upper and lower case a-z)
  3. ) hashref of behavioral options

    keys and values are described below, unless otherwise noted options are booleans which default to false

rand_data_string()

Same args as rand_data(). The difference is that it always returns a string regardless of context.

    my $rand_str = rand_data_string( @rand_args ); # $rand_str contains the random string.
    my @stuff    = rand_data_string( @rand_args ); # $stuff[0] contains the random string.

rand_data_array()

Same args as rand_data(). The difference is that it always returns an array regardless of context.

    my @rand_data = rand_data_array( @rand_args ); # @rand_data contains the random items
    my $rand_data = rand_data_array( @rand_args ); # $rand_data is an array ref to the list of random items


SEEDING RANDOM GENERATOR

Internally it uses srand as per the docs and a part of the seed calculation can be changed to your needs.

If a random int between 0 and 999,999,999,999,999 is not what you want for that part of the calulation, feel free to change it via the hashref argument described above.

Note: this is only *one* component in the srand arg calculation *NOT* the entire srand() arg, so don't panic :)


DIAGNOSTICS

Throws no warnings or errors of its own.


CONFIGURATION AND ENVIRONMENT


Data::Rand requires no configuration files or environment variables.


DEPENDENCIES

the List::Util manpage to shuffle the array of items to use for the randomized data.


INCOMPATIBILITIES

None reported.


BUGS AND LIMITATIONS

No bugs have been reported.

Please report any bugs or feature requests to bug-data-rand@rt.cpan.org, or through the web interface at http://rt.cpan.org.


TODO

May add these behaviorial booleans to option hashref depending on feedback:

    'return_on_bad_args' # do not use defaults, just return;
    'carp_on_bad_args'   # carp() about what args are bad and why
    'croak_on_bad_args'  # same as carp but fatal


AUTHOR

Daniel Muey <http://drmuey.com/cpan_contact.pl>


LICENCE AND COPYRIGHT

Copyright (c) 2007, Daniel Muey <http://drmuey.com/cpan_contact.pl>. All rights reserved.

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


DISCLAIMER OF WARRANTY

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.