https://github.com/giterlizzi/perl-crypt-pbe
Perl extension for PKCS #5 Password-Based Encryption Algorithms
https://github.com/giterlizzi/perl-crypt-pbe
crypt encryption hacktoberfest pbe perl pkcs
Last synced: about 1 year ago
JSON representation
Perl extension for PKCS #5 Password-Based Encryption Algorithms
- Host: GitHub
- URL: https://github.com/giterlizzi/perl-crypt-pbe
- Owner: giterlizzi
- License: other
- Created: 2020-07-03T10:09:16.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-28T16:32:14.000Z (about 3 years ago)
- Last Synced: 2025-01-29T04:42:43.923Z (over 1 year ago)
- Topics: crypt, encryption, hacktoberfest, pbe, perl, pkcs
- Language: Perl
- Homepage:
- Size: 38.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/giterlizzi/perl-Crypt-PBE/releases) [](https://github.com/giterlizzi/perl-Crypt-PBE/actions) [](https://github.com/giterlizzi/perl-Crypt-PBE) [](https://github.com/giterlizzi/perl-Crypt-PBE) [](https://github.com/giterlizzi/perl-Crypt-PBE) [](https://github.com/giterlizzi/perl-Crypt-PBE/issues) [](https://coveralls.io/github/giterlizzi/perl-Crypt-PBE)
# Crypt::PBE - Perl extension for PKCS #5 Password-Based Encryption
## Synopsis
```.pl
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