pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/pkgtools/digest/files digest: correct hash size of bla...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8123155cf21b
branches:  trunk
changeset: 459095:8123155cf21b
user:      nia <nia%pkgsrc.org@localhost>
date:      Wed Sep 29 13:10:40 2021 +0000

description:
digest: correct hash size of blake2s

diffstat:

 pkgtools/digest/files/configure |  2 +-
 pkgtools/digest/files/digest.c  |  4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diffs (30 lines):

diff -r 4fa69e288bc8 -r 8123155cf21b pkgtools/digest/files/configure
--- a/pkgtools/digest/files/configure   Wed Sep 29 11:55:51 2021 +0000
+++ b/pkgtools/digest/files/configure   Wed Sep 29 13:10:40 2021 +0000
@@ -580,7 +580,7 @@
 # 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@localhost'
 PACKAGE_URL=''
diff -r 4fa69e288bc8 -r 8123155cf21b pkgtools/digest/files/digest.c
--- a/pkgtools/digest/files/digest.c    Wed Sep 29 11:55:51 2021 +0000
+++ b/pkgtools/digest/files/digest.c    Wed Sep 29 13:10:40 2021 +0000
@@ -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 <agc%NetBSD.org@localhost>
@@ -84,7 +84,7 @@
        { "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,



Home | Main Index | Thread Index | Old Index