Hook::Modular::Crypt - Crypt mechanism for passwords in workflows


Hook-Modular documentation Contained in the Hook-Modular distribution.

Index


Code Index:

NAME

Top

Hook::Modular::Crypt - Crypt mechanism for passwords in workflows

VERSION

Top

version 1.101050

METHODS

Top

decrypt

FIXME

encrypt

FIXME

INSTALLATION

Top

See perlmodinstall for information and options on installing Perl modules.

BUGS AND LIMITATIONS

Top

No bugs have been reported.

Please report any bugs or feature requests through the web interface at http://rt.cpan.org/Public/Dist/Display.html?Name=Hook-Modular.

AVAILABILITY

Top

The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit http://www.perl.com/CPAN/ to find a CPAN site near you, or see http://search.cpan.org/dist/Hook-Modular/.

The development version lives at http://github.com/hanekomu/Hook-Modular/. Instead of sending patches, please fork this project using the standard git and github infrastructure.

AUTHORS

Top

  Marcel Gruenauer <marcel@cpan.org>
  Tatsuhiko Miyagawa <miyagawa@bulknews.net>

COPYRIGHT AND LICENSE

Top


Hook-Modular documentation Contained in the Hook-Modular distribution.

use 5.008;
use strict;
use warnings;

package Hook::Modular::Crypt;
BEGIN {
  $Hook::Modular::Crypt::VERSION = '1.101050';
}
# ABSTRACT: Crypt mechanism for passwords in workflows
use Module::Pluggable
  search_path  => [qw/Hook::Modular::Crypt/],
  require => 1;
my %handlers = map { $_->id => $_ } __PACKAGE__->plugins;
my $re = "^(" . join("|", map $_->id, __PACKAGE__->plugins) . ")::";

sub decrypt {
    shift;   # we don't need the class
    my ($ciphertext, @args) = @_;
    if ($ciphertext =~ s!$re!!) {
        my $handler = $handlers{$1};
        my @param = split /::/, $ciphertext;
        return $handler->decrypt(@param, @args);
    }
    return $ciphertext;    # just plain text
}

sub encrypt {
    shift;   # we don't need the class
    my ($plaintext, $driver, @param) = @_;
    my $handler = $handlers{$driver}
      or Hook::Modular::Crypt->context->error("No crypt handler for $driver");
    join '::', $driver, $handler->encrypt($plaintext, @param);
}
1;


__END__