pwsh/dev/functions/getPolicyHash.ps1 (8 lines of code) (raw):
function getPolicyHash {
param (
[Parameter(Mandatory)]
[string]
$json
)
return [string]([System.BitConverter]::ToString([System.Security.Cryptography.HashAlgorithm]::Create('sha256').ComputeHash([System.Text.Encoding]::UTF8.GetBytes($json))))
}