summaryrefslogtreecommitdiff
path: root/security/p5-Crypt-Blowfish/DESCR
diff options
context:
space:
mode:
authorwiz <wiz>2001-11-23 19:48:12 +0000
committerwiz <wiz>2001-11-23 19:48:12 +0000
commit65b4458f233946cbc09222b4d82e987a4a741e55 (patch)
tree5d945a4e72bef7a90b9395d839178575c73fc52f /security/p5-Crypt-Blowfish/DESCR
parent5b2c7ce5f417b6a5128729a21ec703d78cfb0383 (diff)
downloadpkgsrc-65b4458f233946cbc09222b4d82e987a4a741e55.tar.gz
Update to 2.09, provided by Shell Hung in pkg/14695.
Changes since 2.06: - changed keysize back to 0 apparently setting keysize to 8 triggered a bad hack in Crypt::CBC which resulted in OpenSRS breaking. the "bad hack" in question is: $ks = $cipher =~ /blowfish/i ? 56 : 8 unless $ks > 0; ... anyway.. fixed. - added two new functions: min_keysize and max_keysize these allow modules like Crypt::CBC_IL and Crypt::CBC_R to use variable key lengths with CBC modes. - cleaned up test.pl - updated README - minor change in XS - additions to reported platforms Remove package version number from DESCR.
Diffstat (limited to 'security/p5-Crypt-Blowfish/DESCR')
-rw-r--r--security/p5-Crypt-Blowfish/DESCR10
1 files changed, 6 insertions, 4 deletions
diff --git a/security/p5-Crypt-Blowfish/DESCR b/security/p5-Crypt-Blowfish/DESCR
index aaf79ed9640..841e070082d 100644
--- a/security/p5-Crypt-Blowfish/DESCR
+++ b/security/p5-Crypt-Blowfish/DESCR
@@ -1,4 +1,6 @@
-This is Crypt::Blowfish version 2.06, an XS-based implementation of the
-Blowfish cryptography algorithm designed by Bruce Schneier. It's designed
-to take full advantage of Crypt::CBC when desired. Blowfish keys may be
-up to 448 bits (56 bytes) long.
+This is Crypt::Blowfish, an XS-based implementation of the Blowfish
+cryptography algorithm designed by Bruce Schneier. It's designed
+to take full advantage of Crypt::CBC when desired. Blowfish keys
+may be up to 448 bits (56 bytes) long.
+
+Suggests to have Crypt::CBC module installed.