From: "Peter Müller" <peter.mueller@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 1/3] downloadsource.sh: Change checksum algorithm to BLAKE2
Date: Fri, 08 Apr 2022 15:10:37 +0000 [thread overview]
Message-ID: <9a3bc372-db7a-24c2-478c-6bc481864672@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1993 bytes --]
Reported-by: Arne Fitzenreiter <arne.fitzenreiter(a)ipfire.org>
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/installer/downloadsource.sh | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/installer/downloadsource.sh b/src/installer/downloadsource.sh
index c74f9e232..47086b2b7 100644
--- a/src/installer/downloadsource.sh
+++ b/src/installer/downloadsource.sh
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2010 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2022 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -48,17 +48,17 @@ if ! download -O "${OUTPUT}" "${URL}"; then
exit 1
fi
-# Download went well. Checking for MD5 sum
-if download -O "${OUTPUT}.md5" "${URL}.md5" &>/dev/null; then
+# Download went well. Checking for BLAKE2 sum
+if download -O "${OUTPUT}.b2" "${URL}.b2" &>/dev/null; then
# Read downloaded checksum
- read -r md5sum rest < "${OUTPUT}.md5"
- rm -f "${OUTPUT}.md5"
+ read -r b2sum rest < "${OUTPUT}.b2"
+ rm -f "${OUTPUT}.b2"
# Compute checkum of downloaded image file
- read -r md5sum_image rest <<< "$(md5sum "${OUTPUT}")"
+ read -r b2sum_image rest <<< "$(b2sum "${OUTPUT}")"
- if [ "${md5sum}" != "${md5sum_image}" ]; then
- echo "MD5 sum mismatch: ${md5sum} != ${md5sum_image}" >&2
+ if [ "${b2sum}" != "${b2sum_image}" ]; then
+ echo "BLAKE2 checksum mismatch: ${b2sum} != ${b2sum_image}" >&2
exit 2
fi
fi
--
2.34.1
next reply other threads:[~2022-04-08 15:10 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-08 15:10 Peter Müller [this message]
2022-04-08 15:10 ` [PATCH 2/3] installer: Update translation message Peter Müller
2022-04-08 15:11 ` [PATCH 3/3] backupiso: Change checksum algorithm to BLAKE2 Peter Müller
2022-04-11 8:11 ` [PATCH 2/3] installer: Update translation message Michael Tremer
2022-04-12 14:58 ` Peter Müller
2022-04-12 16:24 ` Michael Tremer
2022-04-24 10:11 ` Peter Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9a3bc372-db7a-24c2-478c-6bc481864672@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox