PowerShell
Seguridad y criptografía
Buscar..
Cálculo de los códigos hash de una cadena a través de .Net Cryptography
Utilizando .Net System.Security.Cryptography.HashAlgorithm
espacio de nombres para generar el código hash del mensaje con los algoritmos compatibles.
$example="Nobody expects the Spanish Inquisition."
#calculate
$hash=[System.Security.Cryptography.HashAlgorithm]::Create("sha256").ComputeHash(
[System.Text.Encoding]::UTF8.GetBytes($example))
#convert to hex
[System.BitConverter]::ToString($hash)
#2E-DF-DA-DA-56-52-5B-12-90-FF-16-FB-17-44-CF-B4-82-DD-29-14-FF-BC-B6-49-79-0C-0E-58-9E-46-2D-3D
La parte "sha256"
era el algoritmo hash utilizado.
el -
se puede quitar o cambiar a minúsculas
#convert to lower case hex without '-'
[System.BitConverter]::ToString($hash).Replace("-","").ToLower()
#2edfdada56525b1290ff16fb1744cfb482dd2914ffbcb649790c0e589e462d3d
Si se prefiere el formato base64, usar el convertidor base64 para la salida
#convert to base64
[Convert]::ToBase64String($hash)
#Lt/a2lZSWxKQ/xb7F0TPtILdKRT/vLZJeQwOWJ5GLT0=
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow