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: Sat Oct 23 18:09:13 UTC 2021
Modified Files:
pkgsrc/pkgtools/digest/files: configure digest.c
Log Message:
digest: match b2sum in terms of capitalizing BLAKE2s/BLAKE2b
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 pkgsrc/pkgtools/digest/files/configure
cvs rdiff -u -r1.19 -r1.20 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.26 pkgsrc/pkgtools/digest/files/configure:1.27
--- pkgsrc/pkgtools/digest/files/configure:1.26 Tue Oct 5 15:38:48 2021
+++ pkgsrc/pkgtools/digest/files/configure Sat Oct 23 18:09:13 2021
@@ -580,7 +580,7 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='nbsd-digest'
PACKAGE_TARNAME='nbsd-digest'
-PACKAGE_VERSION='20211005'
+PACKAGE_VERSION='20211023'
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.19 pkgsrc/pkgtools/digest/files/digest.c:1.20
--- pkgsrc/pkgtools/digest/files/digest.c:1.19 Wed Sep 29 13:10:40 2021
+++ pkgsrc/pkgtools/digest/files/digest.c Sat Oct 23 18:09:13 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: digest.c,v 1.19 2021/09/29 13:10:40 nia Exp $ */
+/* $NetBSD: digest.c,v 1.20 2021/10/23 18:09:13 nia Exp $ */
/*-
* Copyright (c) 2001-2016 Alistair Crooks <agc%NetBSD.org@localhost>
@@ -81,10 +81,10 @@ typedef struct alg_t {
/* list of supported message digest algorithms */
static alg_t algorithms[] = {
- { "BLAKE2B", 64,
+ { "BLAKE2b", 64,
(HASH_init) BLAKE2b_Init, (HASH_update) BLAKE2b_Update,
(HASH_end) BLAKE2b_End, (HASH_file) BLAKE2b_File },
- { "BLAKE2S", 32,
+ { "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