This is Crypt::CBC, a Perl-only implementation of the cryptographic cipher block chaining mode (CBC). In combination with a block cipher such as Crypt::DES or Crypt::IDEA, you can encrypt and decrypt messages of arbitrarily long length.
26 lines
699 B
Makefile
26 lines
699 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/03/19 04:33:12 danh Exp $
|
|
|
|
COMMENT= "cryptographic cipher block chaining mode"
|
|
|
|
VERSION= 1.25
|
|
DISTNAME= Crypt-CBC-${VERSION}
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= security perl5
|
|
NEED_VERSION= 1.362
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Crypt
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/libdata/perl5/site_perl/${ARCH}-openbsd/MD5.pm::security/p5-Digest-MD5
|
|
RUN_DEPENDS= ${LOCALBASE}/libdata/perl5/site_perl/${ARCH}-openbsd/MD5.pm::security/p5-Digest-MD5
|
|
|
|
MAINTAINER= Dan Harnett <danh@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
.include <bsd.port.mk>
|