在PowerShell中复制Openssl md5'-binary'输出?

时间:2016-03-31 19:00:42

标签: openssl md5 powershell-v4.0

我无法在powershell中重现openssl md5哈希。生成md5哈希的openssl命令使用'-binary'开关,我不知道powershell中的等效函数是什么。有没有办法在powershell中重现openssl的'-binary'开关?

Openssl的:

md5="$(openssl md5 -binary < "files/$file" | base64)"

Powershell的:

$md5 = (Get-FileHash $file -Algorithm md5).hash
$md5base64 = [System.Convert]::ToBase64String($utf8.GetBytes($md5))

0 个答案:

没有答案