在 Win7 上验证 ubuntu iso

在 Win7 上验证 ubuntu iso

我以管理员身份使用 CertUtil -hashfile .\ubuntu-20.04-desktop-amd64.iso 运行 powrershel,得到了 SHA1 校验和,但如果我把(sha256 放在最后)CertUtil -hashfile .\ubuntu-20.04-desktop-amd64.isosha256命令失败?????

不确定如何验证 sha256。

答案1

命令行帮助:

C:\Users\em444>certutil -hashfile -?
Usage:
  CertUtil [Options] -hashfile InFile [HashAlgorithm]
  Generate and display cryptographic hash over a file
Options:
  ../..
Hash algorithms: MD2 MD4 MD5 SHA1 SHA256 SHA384 SHA512

因此正确的语法是:

CertUtil -hashfile .\ubuntu-20.04-desktop-amd64.iso SHA256

相关内容