Sha256: f9736caac4fbe3767eb1ddfffb3cef648c387f4672aa1baca640441dbf5439a1
Contents?: true
Size: 483 Bytes
Versions: 51
Compression:
Stored size: 483 Bytes
Contents
$p = $ExecutionContext.SessionState.Path $path = $p.GetUnresolvedProviderPathFromPSPath("<%= path %>") if (Test-Path $path -PathType Leaf) { $cryptoProv = [System.Security.Cryptography.<%= digest %>]::Create() $file = [System.IO.File]::Open($path, [System.IO.Filemode]::Open, [System.IO.FileAccess]::Read) $digest = ([System.BitConverter]::ToString($cryptoProv.ComputeHash($file))) $digest = $digest.Replace("-","").ToLower() $file.Close() Write-Output $digest }
Version data entries
51 entries across 35 versions & 3 rubygems