Add p5-Crypt-RC4 2.02, perl implementation of the RC4 encryption

algorithm.

PR:		33364
Submitted by:	Seamus Venasse <svenasse@polaris.ca>
This commit is contained in:
Pete Fritchman 2002-01-26 03:11:46 +00:00
parent 7b6c9b4ed1
commit 50c8478051
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=53744
6 changed files with 48 additions and 0 deletions

View File

@ -132,6 +132,7 @@
SUBDIR += p5-Crypt-OpenSSL-Random
SUBDIR += p5-Crypt-PassGen
SUBDIR += p5-Crypt-Primes
SUBDIR += p5-Crypt-RC4
SUBDIR += p5-Crypt-RIPEMD160
SUBDIR += p5-Crypt-RSA
SUBDIR += p5-Crypt-Random

View File

@ -0,0 +1,22 @@
# New ports collection makefile for: Crypt::RC4
# Date created: 30 Dec 2001
# Whom: Seamus Venasse <svenasse@polaris.ca>
#
# $FreeBSD$
#
PORTNAME= Crypt-RC4
PORTVERSION= 2.02
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Crypt
PKGNAMEPREFIX= p5-
MAINTAINER= svenasse@polaris.ca
PERL_CONFIGURE= yes
MAN3= Crypt::RC4.3
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (Crypt-RC4-2.02.tar.gz) = 4ca59a7e58ac9597c3b4f3f46ea22629

View File

@ -0,0 +1 @@
Perl implementation of the RC4 encryption algorithm

View File

@ -0,0 +1,18 @@
A simple implementation of the RC4 algorithm, developed by RSA
Security, Inc. Here is the description from RSA's website:
RC4 is a stream cipher designed by Rivest for RSA Data Security
(now RSA Security). It is a variable key-size stream cipher with
byte-oriented operations. The algorithm is based on the use of a
random permutation. Analysis shows that the period of the cipher
is overwhelmingly likely to be greater than 10100. Eight to sixteen
machine operations are required per output byte, and the cipher can
be expected to run very quickly in software. Independent analysts
have scrutinized the algorithm and it is considered secure.
Based substantially on the "RC4 in 3 lines of perl" found at
http://www.cypherspace.org
WWW: http://search.cpan.org/search?dist=Crypt-RC4
Seamus Venasse <svenasse@polaris.ca>

View File

@ -0,0 +1,5 @@
lib/perl5/site_perl/%%PERL_VER%%/Crypt/RC4.pm
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/RC4/.packlist
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/RC4
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt 2>/dev/null || true
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Crypt 2>/dev/null || true