The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Digest::Oplop - Generate account passwords based on a nickname and a master password

VERSION

Version 0.01

SYNOPSIS

  use Digest::Oplop qw(oplop);
  my $password = oplop($master_password,$label);

DESCRIPTION

This module implements the Oplop hashing algorithm created by Brett Cannon http://code.google.com/p/oplop/. Oplop makes it easy to create unique passwords for every account you have. By using some math, Oplop only requires of you to remember account nicknames and a master password to create a very safe and secure password just for you.

Oplop combines the account nickname and master password to generate a eight character long hash, that should meet the most common criteria for passwords used on web sites.

EXPORT

Nothing is exported by default, but the function oplop can be if requested.

SUBROUTINES

oplop

This function takes two mandatory arguments, the master password and the label and returns the hashed password. Please refer to the SYNOPSIS for an example.

AUTHOR

Mario Domgoergen <mdom@cpan.org>

BUGS

Please report any bugs or feature requests to bug-digest-oplop at rt.cpan.org, or through the web interface at "/rt.cpan.org/NoAuth/ReportBug.html?Queue=Digest- Oplop" in http:. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

CAVEAT

The Python implementation is considered the canonical implementation of the algorithm, and although this library pass the oplop testsuite, there might be some cornercases where both implementations differ.

SUPPORT

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

    perldoc Digest::Oplop

You can also look for information at:

SEE ALSO

ACKNOWLEDGEMENTS

http://code.google.com/p/oplop/

LICENSE AND COPYRIGHT

Copyright 2011 Mario Domgoergen.

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