pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/digest/files



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.

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@localhost'
 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 <agc%NetBSD.org@localhost>
@@ -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,



Home | Main Index | Thread Index | Old Index