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: match b2sum in terms of ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/3e3cae6d0552
branches: trunk
changeset: 768464:3e3cae6d0552
user: nia <nia%pkgsrc.org@localhost>
date: Sat Oct 23 18:09:13 2021 +0000
description:
digest: match b2sum in terms of capitalizing BLAKE2s/BLAKE2b
diffstat:
pkgtools/digest/files/configure | 2 +-
pkgtools/digest/files/digest.c | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (34 lines):
diff -r 7d49893c73ad -r 3e3cae6d0552 pkgtools/digest/files/configure
--- a/pkgtools/digest/files/configure Sat Oct 23 15:22:44 2021 +0000
+++ b/pkgtools/digest/files/configure Sat Oct 23 18:09:13 2021 +0000
@@ -580,7 +580,7 @@
# 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=''
diff -r 7d49893c73ad -r 3e3cae6d0552 pkgtools/digest/files/digest.c
--- a/pkgtools/digest/files/digest.c Sat Oct 23 15:22:44 2021 +0000
+++ b/pkgtools/digest/files/digest.c Sat Oct 23 18:09:13 2021 +0000
@@ -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 @@
/* 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