Received: by mail.netbsd.org (Postfix, from userid 605) id 0999684DD6; Mon, 16 Sep 2019 05:13:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 834C784D9F for ; Mon, 16 Sep 2019 05:13:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id nhApBu2ZdQ1v for ; Mon, 16 Sep 2019 05:13:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 0138A84DD5 for ; Mon, 16 Sep 2019 05:13:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EF19EFBF4; Mon, 16 Sep 2019 05:13:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_156861080832200" MIME-Version: 1.0 Date: Mon, 16 Sep 2019 05:13:28 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/scrypt To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20190916051328.EF19EFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_156861080832200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Sep 16 05:13:28 UTC 2019 Modified Files: pkgsrc/security/scrypt: Makefile distinfo Log Message: scrypt: update to 1.3.0. Significant changes since 1.2.1: * In addition to the scrypt command-line utility, a library "libscrypt-kdf" can now be built and installed by passing the --enable-libscrypt-kdf option to configure. * On x86 CPUs which support them, RDRAND and SHA extensions are used to provide supplemental entropy and speed up hash computations respectively. * When estimating the amount of available RAM, scrypt ignores RLIMIT_DATA on systems which have mmap. * A new command "scrypt info encfile" prints information about an encrypted file without decrypting it. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/scrypt/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/scrypt/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_156861080832200 Content-Disposition: inline Content-Length: 1578 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/scrypt/Makefile diff -u pkgsrc/security/scrypt/Makefile:1.5 pkgsrc/security/scrypt/Makefile:1.6 --- pkgsrc/security/scrypt/Makefile:1.5 Wed Apr 26 14:54:59 2017 +++ pkgsrc/security/scrypt/Makefile Mon Sep 16 05:13:28 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2017/04/26 14:54:59 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2019/09/16 05:13:28 wiz Exp $ -DISTNAME= scrypt-1.2.1 +DISTNAME= scrypt-1.3.0 CATEGORIES= security MASTER_SITES= https://www.tarsnap.com/scrypt/ EXTRACT_SUFX= .tgz Index: pkgsrc/security/scrypt/distinfo diff -u pkgsrc/security/scrypt/distinfo:1.4 pkgsrc/security/scrypt/distinfo:1.5 --- pkgsrc/security/scrypt/distinfo:1.4 Wed Apr 26 14:54:59 2017 +++ pkgsrc/security/scrypt/distinfo Mon Sep 16 05:13:28 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2017/04/26 14:54:59 wiz Exp $ +$NetBSD: distinfo,v 1.5 2019/09/16 05:13:28 wiz Exp $ -SHA1 (scrypt-1.2.1.tgz) = 27663b2311ac0af791ee5b2cde9d68f9c06e1453 -RMD160 (scrypt-1.2.1.tgz) = 2d32ba91eec5fa51bbce0242650ed9fc9230f177 -SHA512 (scrypt-1.2.1.tgz) = ffda0ee90d283985245b77cc1d04b13c52aff78e925f323075d3b2c0439f16bbba1c432de8607820af945e6fa4e3be0e22a422b0b43a1fca0504cee3761004cd -Size (scrypt-1.2.1.tgz) = 127619 bytes +SHA1 (scrypt-1.3.0.tgz) = 985804ecc9c3e56ed8f5c49b6df0106370ee9192 +RMD160 (scrypt-1.3.0.tgz) = fc13f9039783ba37367c9571b427d9926da88f93 +SHA512 (scrypt-1.3.0.tgz) = 199f58adb5231f1ad585dbe8f64d6c54920cee201bd7703bcfc7e64917bf8647f9e35b3835b78c41210fd9af5223a79938f2495e4b48e6a62bfe8721d82492c2 +Size (scrypt-1.3.0.tgz) = 380332 bytes --_----------=_156861080832200--