diff options
author | wiz <wiz@pkgsrc.org> | 2017-04-26 14:54:59 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2017-04-26 14:54:59 +0000 |
commit | 38a53e14b9ed0e053e2ec373d6d58ca774ab6cf9 (patch) | |
tree | dbe6efc2a98bd2e34cfe42da1ae8a7b88b4cbd5b | |
parent | 9cd27a2cb9a3dc152e828a3ab852ce17040db81b (diff) | |
download | pkgsrc-38a53e14b9ed0e053e2ec373d6d58ca774ab6cf9.tar.gz |
Updated scrypt to 1.2.1.
Significant changes since 1.2.0:
* A new -v option instructs scrypt to print the key derivation parameters
it has selected.
* A new --version option prints the version number of the scrypt utility.
* A new -P option make scrypt read the passphrase from standard input; this
is designed for scripts which pipe a passphrase in from elsewhere.
* A new -f option makes 'scrypt dec' ignore the amount of memory or CPU time
it thinks decrypting a file will take, and proceed anyway; this may be useful
in cases where scrypt's estimation is wrong.
* The '-M maxmem' option now accepts "humanized" inputs, e.g., "-M 1GB".
There are also a variety of less visible changes: Performance improvements
in the SHA256 routines, minor bug and compiler warning fixes, the addition
of a test suite, and some minor code reorganization.
-rw-r--r-- | security/scrypt/Makefile | 7 | ||||
-rw-r--r-- | security/scrypt/distinfo | 10 |
2 files changed, 9 insertions, 8 deletions
diff --git a/security/scrypt/Makefile b/security/scrypt/Makefile index d8492600a99..45e584dd9a8 100644 --- a/security/scrypt/Makefile +++ b/security/scrypt/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2016/03/05 11:29:26 jperkin Exp $ +# $NetBSD: Makefile,v 1.5 2017/04/26 14:54:59 wiz Exp $ -DISTNAME= scrypt-1.2.0 -PKGREVISION= 1 +DISTNAME= scrypt-1.2.1 CATEGORIES= security MASTER_SITES= https://www.tarsnap.com/scrypt/ EXTRACT_SUFX= .tgz @@ -12,6 +11,8 @@ COMMENT= Encrypt and decrypt files LICENSE= 2-clause-bsd GNU_CONFIGURE= yes +TEST_TARGET= test +UNLIMIT_RESOURCES= datasize .include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/security/scrypt/distinfo b/security/scrypt/distinfo index 8b86501d7f7..3fb001e4050 100644 --- a/security/scrypt/distinfo +++ b/security/scrypt/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2015/11/04 01:18:08 agc Exp $ +$NetBSD: distinfo,v 1.4 2017/04/26 14:54:59 wiz Exp $ -SHA1 (scrypt-1.2.0.tgz) = 9bf04644377d4930ea3577b751e9ad4b6d34580b -RMD160 (scrypt-1.2.0.tgz) = 47ff357b5c79dcdf9f46cb37ff89fc8fbb42ccef -SHA512 (scrypt-1.2.0.tgz) = 81ac8d82c38dc73981fa5bd4c011142c7ccef962a650ed849317a49e8aa66c26f4557dde326202792500a996178784d5eb0d28f909ab630cb05c86fdebfaae0d -Size (scrypt-1.2.0.tgz) = 107796 bytes +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 |