Generar HMAC-SHA256 con PowerShell
Generar HMAC-SHA256 con PowerShell
$hmacsha = New-Object System.Security.Cryptography.HMACSHA256 $hmacsha.key = [Text.Encoding]::ASCII.GetBytes("Clave secreta") $signature = $hmacsha.ComputeHash([Text.Encoding]::ASCII.GetBytes("Mensaje secreto")) $signature = [Convert]::ToBase64String($signature) $signature
View On WordPress
















