Update to 1.1p2.

Provide better description, and add WWW.
Assume maintainership.
This commit is contained in:
Anton Berezin 2001-08-31 13:34:40 +00:00
parent d4c0577656
commit 8b9c69b5b7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=47225
3 changed files with 20 additions and 4 deletions

View File

@ -6,13 +6,16 @@
#
PORTNAME= Crypt-ECB
PORTVERSION= 1.1
PORTVERSION= 1.1p2
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Crypt
PKGNAMEPREFIX= p5-
DISTNAME= ${PORTNAME}-${PORTVERSION:S/p/-/}
MAINTAINER= ports@FreeBSD.org
MAINTAINER= tobez@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME:S/-2//}
PERL_CONFIGURE= yes

View File

@ -1 +1 @@
MD5 (Crypt-ECB-1.1.tar.gz) = 22b7093a8dc71e5b73d53c978e90ecc6
MD5 (Crypt-ECB-1.1-2.tar.gz) = 8c15a093e500abdd3ac24ca199fae7b9

View File

@ -1,3 +1,16 @@
Crypt::ECB is a perl module implementing the ECB encryption algorithm.
This module is a Perl-only implementation of the ECB mode. In
combination with a block cipher such as DES, IDEA or Blowfish, you can
encrypt and decrypt messages of arbitrarily long length. Though for
security reasons other modes than ECB such as CBC should be preferred.
See textbooks on cryptography if you want to know why.
The functionality of the module can be accessed via OO methods or via
standard function calls. Remember that some crypting module like for
example Blowfish has to be installed. The syntax follows that of
Crypt::CBC meaning you can access Crypt::ECB exactly like Crypt::CBC,
though Crypt::ECB is more flexible. For example you can change the key
or the cipher without having to create a new crypt object.
WWW: http://search.cpan.org/search?dist=Crypt-ECB
--will