openbsd-ports/security/p5-Crypt-CBC/Makefile
steven 7cff876547 SECURITY update to Crypt::CBC 2.17
Versions of this module prior to 2.17 were incorrectly
using 8 byte IVs when generating the old-style RandomIV style header
(as opposed to the new-style random salt header). This affects data
encrypted using the Rijndael algorithm, which has a 16 byte blocksize,
and is a significant security issue.

The bug has been corrected in versions 2.17 and higher by making it
impossible to use 16-byte block ciphers with RandomIV headers. You may
still read legacy encrypted data by explicitly passing the
-insecure_legacy_decrypt option to Crypt::CBC->new().
2006-03-19 16:03:27 +00:00

27 lines
597 B
Makefile

# $OpenBSD: Makefile,v 1.14 2006/03/19 16:03:27 steven Exp $
COMMENT= "cryptographic cipher block chaining mode"
DISTNAME= Crypt-CBC-2.17
PKGNAME= p5-${DISTNAME}
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Crypt/}
RUN_DEPENDS= :p5-Crypt-DES-*:security/p5-Crypt-DES \
:p5-Crypt-Blowfish-*:security/p5-Crypt-Blowfish
BUILD_DEPENDS= ${RUN_DEPENDS}
MAINTAINER= Dan Harnett <danh@openbsd.org>
# Perl
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
CONFIGURE_STYLE= perl
PKG_ARCH= *
.include <bsd.port.mk>