PowerShell计算字符串MD5 Hash值

 

$someString = "key=MTZl&batch=1&content=nihao1052020-11-10"
$md5 = New-Object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider
$utf8 = New-Object -TypeName System.Text.UTF8Encoding
$hash = [System.BitConverter]::ToString($md5.ComputeHash($utf8.GetBytes($someString))).replace(‘-‘,‘‘).ToLower()
$hash

 

 

$someFilePath = "C:\foo.txt"
$md5 = New-Object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider
$hash = [System.BitConverter]::ToString($md5.ComputeHash([System.IO.File]::ReadAllBytes($someFilePath)))

PowerShell计算字符串MD5 Hash值

上一篇:语音合成论文优选:ICASSP 2021 M2VoC 第2名Investigating on Incorporating Pretrained and Learnable Speaker Repres


下一篇:EXC_BAD_ACCESS异常 调试过程