summaryrefslogtreecommitdiffstats
path: root/perl/perl-Crypt-Blowfish_PP/README
diff options
context:
space:
mode:
author Christopher Walker <kris240376@gmail.com>2013-04-26 19:08:43 -0400
committer Niels Horn <niels.horn@slackbuilds.org>2013-04-28 12:30:24 -0300
commit78fff7bad5532215eac050d9bb80934ebb0b9fd1 (patch)
treed208e1b9ff114460e032962cf1192d27f7768c82 /perl/perl-Crypt-Blowfish_PP/README
parentdd019c88e285d1e09686fcb2b1134e5128689576 (diff)
downloadslackbuilds-78fff7bad5532215eac050d9bb80934ebb0b9fd1.tar.gz
slackbuilds-78fff7bad5532215eac050d9bb80934ebb0b9fd1.tar.xz
perl/perl-Crypt-Blowfish_PP: Added (Blowfish encrypt implementation)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'perl/perl-Crypt-Blowfish_PP/README')
-rw-r--r--perl/perl-Crypt-Blowfish_PP/README8
1 files changed, 8 insertions, 0 deletions
diff --git a/perl/perl-Crypt-Blowfish_PP/README b/perl/perl-Crypt-Blowfish_PP/README
new file mode 100644
index 0000000000..560bff0077
--- /dev/null
+++ b/perl/perl-Crypt-Blowfish_PP/README
@@ -0,0 +1,8 @@
+Blowfish encryption algorithm implemented purely in Perl
+
+The Crypt::Blowfish_PP module provides for users to use the Blowfish encryption
+algorithm in perl. The implementation is entirely Object Oriented, as there is
+quite a lot of context inherent in making blowfish as fast as it is. The key is
+anywhere between 64 and 448 bits (8 and 56 bytes), and should be passed as a
+packed string. The transformation itself is a 16-round Feistel Network, and
+operates on a 64 bit block.