Calculating SHA1 Hash Algorithm Powershell V2.0

2019-06-16 10:39发布

Does anyone know if it is possible to calculate a SHA1 Hash in Powershell V2.0?

The only information I can find online is with Powershell V4.0.

2条回答
做个烂人
2楼-- · 2019-06-16 11:14

I can't remember back in Powershell V2 days, .NET 3.5 was typically installed too. I think it's the case.

You can always try the following and see if it works:

$file = 'd:\scripts\sha1.ps1'

$sha1 = New-Object System.Security.Cryptography.SHA1CryptoServiceProvider 
[System.BitConverter]::ToString( $sha1.ComputeHash([System.IO.File]::ReadAllBytes($file)))

Replace the value of $file with the name of a file you have.

查看更多
萌系小妹纸
3楼-- · 2019-06-16 11:37

Yes, it is possible as it is part of NET 2.0. In fact, the PowerShell Community Extensions use the .NET hash support to implement the Get-Hash command. Version 2.1.1 installs and runs on PowerShell V2.

查看更多
登录 后发表回答