89932ed0a8
Blowfish is a published algorithm written by Bruce Schneier Unlike IDEA or DES etc. there are no patent implications in using this algorithm. It uses anywhere between a 64 bit and a 448 bit key. The transform itself is fast and operates on a 64 bit block, and most of the calculation time is in initialising the context with the key data. The _PP name comes from the fact that this implementation is Pure Perl, and will not have any compatibility problems. PR: ports/43794 Submitted by: Jim Geovedi <negative@toxic.magnesium.net>
22 lines
463 B
Makefile
22 lines
463 B
Makefile
# New ports collection makefile for: p5-Crypt-Blowfish_PP
|
|
# Date created: Sep 30, 2002
|
|
# Whom: Jim Geovedi <jim@corebsd.or.id>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Crypt-Blowfish_PP
|
|
PORTVERSION= 1.12
|
|
CATEGORIES= security perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Crypt
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= jim@corebsd.or.id
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Crypt::Blowfish_PP.3
|
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
|
|
|
.include <bsd.port.mk>
|