Skip to content

Perl extension for PKCS #5 Password-Based Encryption Algorithms

License

Notifications You must be signed in to change notification settings

giterlizzi/perl-Crypt-PBE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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