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

NAME

Archive::Rgssad::Keygen - Internal utilities to generate magickeys.

SYNOPSIS

    use Archive::Rgssad::Keygen qw(keygen);

    my $seed = 0xDEADCAFE;
    my $key = keygen($seed);        # get next key
    my @keys = keygen($seed, 10);   # get next 10 keys

DESCRIPTION

keygen $key
keygen $key, $num

Uses KEY as seed, generates NUM keys, and stores the new seed back to KEY. If NUM is omitted, it generates 1 key, which is exactly KEY. In scalar context, returns the last keys generated.

AUTHOR

Zejun Wu, <watashi at watashi.ws>

SUPPORT

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

    perldoc Archive::Rgssad::Keygen

You can also look for information at:

LICENSE AND COPYRIGHT

Copyright 2012 Zejun Wu.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.