mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
Generic Counter Mode implementation in pure Perl. The Counter Mode module
constructs a stream cipher from a block cipher or cryptographic hash funtion and returns it as an object. Any block cipher in the Crypt:: class can be used, as long as it supports the blocksize and keysize methods. Any hash function in the Digest:: class can be used, as long as it supports the add method. WWW: http://search.cpan.org/dist/Crypt-Ctr PR: ports/90613 Submitted by: Gabor Kovesdan
This commit is contained in:
parent
23be9d08e9
commit
429feed8fc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=151519
@ -293,6 +293,7 @@
|
||||
SUBDIR += p5-Crypt-CipherSaber
|
||||
SUBDIR += p5-Crypt-Cracklib
|
||||
SUBDIR += p5-Crypt-Cryptix
|
||||
SUBDIR += p5-Crypt-Ctr
|
||||
SUBDIR += p5-Crypt-DES
|
||||
SUBDIR += p5-Crypt-DES_EDE3
|
||||
SUBDIR += p5-Crypt-DH
|
||||
|
24
security/p5-Crypt-Ctr/Makefile
Normal file
24
security/p5-Crypt-Ctr/Makefile
Normal file
@ -0,0 +1,24 @@
|
||||
# New ports collection Makefile for: p5-Crypt-Ctr
|
||||
# Date created: 18 Dec 2006
|
||||
# Whom: Gabor Kovesdan
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Crypt-Ctr
|
||||
PORTVERSION= 0.01
|
||||
CATEGORIES= security perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Crypt
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= gkovesdan@t-hosting.hu
|
||||
COMMENT= Perl extension for encrypting data in Counter Mode
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= Crypt::Ctr.3
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.if ${PERL_LEVEL} <= 500503
|
||||
IGNORE= requires Perl 5.6. Intall lang/perl5 or lang/perl5.8, and try again
|
||||
.endif
|
||||
.include <bsd.port.post.mk>
|
3
security/p5-Crypt-Ctr/distinfo
Normal file
3
security/p5-Crypt-Ctr/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (Crypt-Ctr-0.01.tar.gz) = 2f5e1192078827c1425ae2d9e527211b
|
||||
SHA256 (Crypt-Ctr-0.01.tar.gz) = 1835a9af5fb36790d0d8ace2abe5f3d42caaad8ef431fbc7e9be4487e2af6a9c
|
||||
SIZE (Crypt-Ctr-0.01.tar.gz) = 7253
|
8
security/p5-Crypt-Ctr/pkg-descr
Normal file
8
security/p5-Crypt-Ctr/pkg-descr
Normal file
@ -0,0 +1,8 @@
|
||||
Generic Counter Mode implementation in pure Perl. The Counter Mode module
|
||||
constructs a stream cipher from a block cipher or cryptographic hash funtion
|
||||
and returns it as an object. Any block cipher in the Crypt:: class can be
|
||||
used, as long as it supports the blocksize and keysize methods. Any hash
|
||||
function in the Digest:: class can be used, as long as it supports
|
||||
the add method.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Crypt-Ctr
|
5
security/p5-Crypt-Ctr/pkg-plist
Normal file
5
security/p5-Crypt-Ctr/pkg-plist
Normal file
@ -0,0 +1,5 @@
|
||||
%%SITE_PERL%%/Crypt/Ctr.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Ctr/.packlist
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Ctr/
|
||||
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt 2>/dev/null || true
|
||||
@unexec rmdir %D/%%SITE_PERL%%/Crypt 2>/dev/null || true
|
Loading…
Reference in New Issue
Block a user