Fix hash check

This commit is contained in:
Markson Hon 2023-01-16 21:51:45 +08:00 committed by yuhan6665
parent 117226f969
commit 046d9aa243
1 changed files with 6 additions and 8 deletions

View File

@ -429,14 +429,12 @@ download_xray() {
fi fi
# Verification of Xray archive # Verification of Xray archive
for LISTSUM in 'md5' 'sha1' 'sha256' 'sha512'; do CHECKSUM=$(cat "$ZIP_FILE".dgst | awk -F '= ' '/256=/ {print $2}')
SUM="$(${LISTSUM}sum "$ZIP_FILE" | sed 's/ .*//')" LOCALSUM=$(sha256sum "$ZIP_FILE" | awk '{printf $1}')
CHECKSUM="$(grep ${LISTSUM^^} "$ZIP_FILE".dgst | grep "$SUM" -o -a | uniq)" if [[ "$CHECKSUM" != "$LOCALSUM" ]]; then
if [[ "$SUM" != "$CHECKSUM" ]]; then echo 'error: SHA256 check failed! Please check your network or try again.'
echo 'error: Check failed! Please check your network or try again.' return 1
return 1 fi
fi
done
} }
decompression() { decompression() {