Received: by mail.netbsd.org (Postfix, from userid 605) id D7A4E84E8D; Wed, 29 Sep 2021 13:10:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1CA6484E85 for ; Wed, 29 Sep 2021 13:10:41 +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 IrJZ3SPtb3d9 for ; Wed, 29 Sep 2021 13:10:40 +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 96DE384E84 for ; Wed, 29 Sep 2021 13:10:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8A923FA97; Wed, 29 Sep 2021 13:10:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163292104011330" MIME-Version: 1.0 Date: Wed, 29 Sep 2021 13:10:40 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/pkgtools/digest/files To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210929131040.8A923FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163292104011330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Sep 29 13:10:40 UTC 2021 Modified Files: pkgsrc/pkgtools/digest/files: configure digest.c Log Message: digest: correct hash size of blake2s To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/pkgtools/digest/files/configure cvs rdiff -u -r1.18 -r1.19 pkgsrc/pkgtools/digest/files/digest.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163292104011330 Content-Disposition: inline Content-Length: 1406 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/digest/files/configure diff -u pkgsrc/pkgtools/digest/files/configure:1.24 pkgsrc/pkgtools/digest/files/configure:1.25 --- pkgsrc/pkgtools/digest/files/configure:1.24 Tue Sep 28 13:05:08 2021 +++ pkgsrc/pkgtools/digest/files/configure Wed Sep 29 13:10:40 2021 @@ -580,7 +580,7 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='nbsd-digest' PACKAGE_TARNAME='nbsd-digest' -PACKAGE_VERSION='20210928' +PACKAGE_VERSION='20210929' PACKAGE_STRING='nbsd-digest 20190127' PACKAGE_BUGREPORT='agc@netbsd.org' PACKAGE_URL='' Index: pkgsrc/pkgtools/digest/files/digest.c diff -u pkgsrc/pkgtools/digest/files/digest.c:1.18 pkgsrc/pkgtools/digest/files/digest.c:1.19 --- pkgsrc/pkgtools/digest/files/digest.c:1.18 Tue Sep 28 13:05:08 2021 +++ pkgsrc/pkgtools/digest/files/digest.c Wed Sep 29 13:10:40 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: digest.c,v 1.18 2021/09/28 13:05:08 nia Exp $ */ +/* $NetBSD: digest.c,v 1.19 2021/09/29 13:10:40 nia Exp $ */ /*- * Copyright (c) 2001-2016 Alistair Crooks @@ -84,7 +84,7 @@ static alg_t algorithms[] = { { "BLAKE2B", 64, (HASH_init) BLAKE2b_Init, (HASH_update) BLAKE2b_Update, (HASH_end) BLAKE2b_End, (HASH_file) BLAKE2b_File }, - { "BLAKE2S", 64, + { "BLAKE2S", 32, (HASH_init) BLAKE2s_Init, (HASH_update) BLAKE2s_Update, (HASH_end) BLAKE2s_End, (HASH_file) BLAKE2s_File }, { "MD5", 16, --_----------=_163292104011330--