如何在 Windows 上使用 Git Bash 终端来验证下载文件的 sha256 哈希值?
How to use Git Bash terminal on Windows to validate sha256 hash of a downloaded file?
如何在 Windows 上使用 Git Bash 终端来验证下载文件的 sha256 哈希值?例如 PHP versions。
在 Git Bash 终端中验证文件的 sha256 散列的最简单方法是这样的:
# Go to the directory in which the downloaded file exists
cd /path/to/directory/
# Validate sha256 hash of the file
sha256sum name_of_the_file
这将在终端中打印文件的 sha256 哈希值,然后您可以将其与您从中下载文件的网站中存在的原始哈希值进行比较。
例如,您可以从此处下载任何 PHP 版本:php.net/download 并像上面提到的那样验证其 sha256 哈希值。
另一种验证方法是这样的:
echo "the_original_sha256sum_of_the_file the_name_of_the_file" | sha256sum -c
示例:
echo "2a1468ab5dd540beb161d7b388ed2d80e2515ab112244b08ac201f5bf846d052 php-7.3.23-Win32-VC15-x64.zip" | sha256sum -c
如果文件的 sha256 哈希有效,下一行(包含文件名后跟单词 OK)将在终端中打印:
php-7.3.23-Win32-VC15-x64.zip: OK
如果你有一个 sha256sum 文件,你可以像这样验证下载的文件:
sha256sum -c name_of_the_sha256sum_file
例如,如果您下载了这些 phpMyAdmin versions 的任何版本及其 sha256 文件,那么您可以按照上述方法验证文件,如下所示:
sha256sum -c phpMyAdmin-5.0.2-english.zip.sha256
这将打印下一行,这意味着文件有效:
phpMyAdmin-5.0.2-english.zip: OK
请注意,您可以根据需要使用sha1sum
代替sha256sum
。
如何在 Windows 上使用 Git Bash 终端来验证下载文件的 sha256 哈希值?例如 PHP versions。
在 Git Bash 终端中验证文件的 sha256 散列的最简单方法是这样的:
# Go to the directory in which the downloaded file exists
cd /path/to/directory/
# Validate sha256 hash of the file
sha256sum name_of_the_file
这将在终端中打印文件的 sha256 哈希值,然后您可以将其与您从中下载文件的网站中存在的原始哈希值进行比较。
例如,您可以从此处下载任何 PHP 版本:php.net/download 并像上面提到的那样验证其 sha256 哈希值。
另一种验证方法是这样的:
echo "the_original_sha256sum_of_the_file the_name_of_the_file" | sha256sum -c
示例:
echo "2a1468ab5dd540beb161d7b388ed2d80e2515ab112244b08ac201f5bf846d052 php-7.3.23-Win32-VC15-x64.zip" | sha256sum -c
如果文件的 sha256 哈希有效,下一行(包含文件名后跟单词 OK)将在终端中打印:
php-7.3.23-Win32-VC15-x64.zip: OK
如果你有一个 sha256sum 文件,你可以像这样验证下载的文件:
sha256sum -c name_of_the_sha256sum_file
例如,如果您下载了这些 phpMyAdmin versions 的任何版本及其 sha256 文件,那么您可以按照上述方法验证文件,如下所示:
sha256sum -c phpMyAdmin-5.0.2-english.zip.sha256
这将打印下一行,这意味着文件有效:
phpMyAdmin-5.0.2-english.zip: OK
请注意,您可以根据需要使用sha1sum
代替sha256sum
。