diff options
author | wiz <wiz@pkgsrc.org> | 2021-04-27 10:51:00 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2021-04-27 10:51:00 +0000 |
commit | 097ca4cb9d1b8c3ad05e3f16bd7a93b2381ea795 (patch) | |
tree | 8271f511b8c1f5dfda10d4ff6f5a9f79b8d39a78 | |
parent | 697056e029d2e3ac09e07379096831947db443e8 (diff) | |
download | pkgsrc-097ca4cb9d1b8c3ad05e3f16bd7a93b2381ea795.tar.gz |
p5-Crypt-CBC: update to 3.03.
3.03 Sun 18 Apr 2021 10:54:19 PM EDT
- Fixed bug which caused an extraneous block of garbage data to be appended to encrypted
string when "nopadding" specified and plaintext is even multiple of blocksize.
3.02
- CTR mode now requires the Math::Int128 module, which gives a ~5x performance
boost over Math::BigInt.
3.01
- Warn when the deprecated opensslv1 PBKDF (key derivation function) is used
for encryption. Turn off with -nodeprecate=>1 or by choosing a different
PBKDF, such as -pbkdf=>'pbkdf2'.
- Fix a regression when passing the legacy -salt=>1 argument.
3.00 Sun Feb 7 10:28:08 EST 2021
- Released version 3.00 in recognition of multiple new features
and cleanups.
2.37 Sun Feb 7 10:20:17 EST 2021
- Added better argument checking.
- Fixed long-standing standard padding bug: plaintext ending with
bytes between 0x00 and 0x0A would be truncated in some conditions.
- Fixed Rijndael_compat padding.
2.36 Wed 03 Feb 2021 09:19:06 AM EST
- Add support for OFB, CFB and CTR chain modes.
- New dependency: Math::BigInt
2.35 Sun Jan 31 22:02:42 EST 2021
- Add support for PBKDF2 key derivation algorithm
- New dependencies: Digest::SHA, Crypt::PBKDF2, Crypt::Cipher::AES
2.34 Fri Jan 29 18:08:12 EST 2021
- Support for openssl SHA-256 key derivation algorithm
-rw-r--r-- | security/p5-Crypt-CBC/Makefile | 10 | ||||
-rw-r--r-- | security/p5-Crypt-CBC/distinfo | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/security/p5-Crypt-CBC/Makefile b/security/p5-Crypt-CBC/Makefile index ca30ecabb31..5f27c990b37 100644 --- a/security/p5-Crypt-CBC/Makefile +++ b/security/p5-Crypt-CBC/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.46 2020/08/31 18:11:11 wiz Exp $ +# $NetBSD: Makefile,v 1.47 2021/04/27 10:51:00 wiz Exp $ -DISTNAME= Crypt-CBC-2.33 +DISTNAME= Crypt-CBC-3.03 PKGNAME= p5-${DISTNAME} -PKGREVISION= 8 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Crypt/} @@ -10,8 +9,9 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://metacpan.org/release/Crypt-CBC COMMENT= Perl5 cipher block chaining mode for various crypto algorithms -BUILD_DEPENDS+= p5-Crypt-Rijndael-[0-9]*:../../security/p5-Crypt-Rijndael -#DEPENDS+= {perl>=5.7.3,p5-Digest-MD5>=2.0}:../../security/p5-Digest-MD5 +DEPENDS+= p5-Math-Int128-[0-9]*:../../math/p5-Math-Int128 +DEPENDS+= p5-Crypt-PBKDF2-[0-9]*:../../security/p5-Crypt-PBKDF2 +DEPENDS+= p5-CryptX-[0-9]*:../../security/p5-CryptX USE_LANGUAGES= # empty PERL5_PACKLIST= auto/Crypt/CBC/.packlist diff --git a/security/p5-Crypt-CBC/distinfo b/security/p5-Crypt-CBC/distinfo index c5e4e6b637e..75601c10081 100644 --- a/security/p5-Crypt-CBC/distinfo +++ b/security/p5-Crypt-CBC/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.17 2015/11/04 01:17:54 agc Exp $ +$NetBSD: distinfo,v 1.18 2021/04/27 10:51:00 wiz Exp $ -SHA1 (Crypt-CBC-2.33.tar.gz) = 67746d8b8984f9aaa27b86e30ae6e4561136621c -RMD160 (Crypt-CBC-2.33.tar.gz) = f10182f4ed986e653b7b5c2fe09197b694beb40d -SHA512 (Crypt-CBC-2.33.tar.gz) = 5db17905c38b46f496617095655bb48e4737d6813c794f65dce88556f177caee1d5f669ddb0da3ad4b00e11ff1bc0af91fd4cd312ed2fd8497e410ef11176244 -Size (Crypt-CBC-2.33.tar.gz) = 23470 bytes +SHA1 (Crypt-CBC-3.03.tar.gz) = 08f15a7d0a8e78078cbd7e932be3cafb6ed83ded +RMD160 (Crypt-CBC-3.03.tar.gz) = b9c477ef9d0ce2a43c18d93caf341472e4557c68 +SHA512 (Crypt-CBC-3.03.tar.gz) = c1c55dd5fae83d45893f47319323f6d0ad8295ec480b8ab034beeb33bb7d16f26bbedaeef6613a3495849f5034e7502b01c88ab75dd4d69234151d3b674929e6 +Size (Crypt-CBC-3.03.tar.gz) = 40174 bytes |