Release Build Status License Starts Forks Issues Coverage Status

Crypt::PBE - Perl extension for PKCS #5 Password-Based Encryption

Synopsis

use Crypt::PBE qw(:jce);

my $pbe = PBEWithMD5AndDES('mypassword');

my $encrypted = $pbe->encrypt('secret'); # Base64 encrypted data

print $pbe->decrypt($encrypted);

Install

To install Crypt::PBE distribution, run the following commands:

perl Makefile.PL
make
make test
make install