Add p5-Crypt-OTP 1.03, perl implementation of the One Time Pad

(hence, OTP) encryption method.

PR:		33362
Submitted by:	Seamus Venasse <svenasse@polaris.ca>
This commit is contained in:
Pete Fritchman 2002-01-26 03:01:41 +00:00
parent 2f32ba326d
commit 7b6c9b4ed1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=53742
6 changed files with 42 additions and 0 deletions

View File

@ -126,6 +126,7 @@
SUBDIR += p5-Crypt-ECB
SUBDIR += p5-Crypt-HCE_SHA
SUBDIR += p5-Crypt-IDEA
SUBDIR += p5-Crypt-OTP
SUBDIR += p5-Crypt-OpenPGP
SUBDIR += p5-Crypt-OpenSSL-RSA
SUBDIR += p5-Crypt-OpenSSL-Random

View File

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

View File

@ -0,0 +1 @@
MD5 (Crypt-OTP-1.03.tar.gz) = 53fbe88beeb9530ef7cca7b9b3bafadc

View File

@ -0,0 +1 @@
Perl implementation of the One Time Pad (hence, OTP) encryption method

View File

@ -0,0 +1,9 @@
The One Time Pad encryption method is very simple, and impossible
to crack without the actual pad file against which the to-be-encrypted
message is XOR'ed. Encryption and decryption are performed using
excactly the same method, and the message will decrypt correctly
only if the same pad is used in decryption as was use in encryption.
WWW: http://search.cpan.org/search?dist=Crypt-OTP
Seamus Venasse <svenasse@polaris.ca>

View File

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