powershell 使用各种加密算法在Powershell中散列字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 使用各种加密算法在Powershell中散列字符串相关的知识,希望对你有一定的参考价值。

#Here is a simple script to hash a string using your chosen cryptography algorithm.
#Usage Examples:
#Get-StringHash "My String to hash" "MD5"
#Get-StringHash "My String to hash" "RIPEMD160"
#Get-StringHash "My String to hash" "SHA1"
#Get-StringHash "My String to hash" "SHA256"
#Get-StringHash "My String to hash" "SHA384"
#Get-StringHash "My String to hash" "SHA512"

#http://jongurgul.com/blog/#Get-StringHash-get-filehash/
#https://gallery.technet.microsoft.com/scriptcenter/Get-StringHash-aa843f71

Function Get-StringHash([String] $String,$HashName = "MD5")
{
$StringBuilder = New-Object System.Text.StringBuilder
[System.Security.Cryptography.HashAlgorithm]::Create($HashName).ComputeHash([System.Text.Encoding]::UTF8.GetBytes($String))|%{
[Void]$StringBuilder.Append($_.ToString("x2"))
}
$StringBuilder.ToString()
}

$myvar = Read-Host –Prompt 'Enter string to hash using SHA-512 algorithm'
Get-StringHash $myvar "SHA512"
Write-Host "Press any key to continue ..."
$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")

#PowerShell #encryption

以上是关于powershell 使用各种加密算法在Powershell中散列字符串的主要内容,如果未能解决你的问题,请参考以下文章

使用 PowerShell 通过 FTP 上传文件

PowerShell ISE:调试从 power-shell 脚本调用的另一个 power-shell 脚本

C++实现RSA加密解密算法

如何使用Windows Power Shell

各种加密算法在Go语言中的使用

如何使用Windows Power Shell