Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.37 KB

README.md

File metadata and controls

28 lines (17 loc) · 1.37 KB

Release Actions 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

Copyright

  • Copyright 2020-2023 © Giuseppe Di Terlizzi