RosettaCodeData/Task/MD5/PowerShell/md5.psh
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

4 lines
234 B
Text

$string = "The quick brown fox jumped over the lazy dog's back"
$data = [Text.Encoding]::UTF8.GetBytes($string)
$hash = [Security.Cryptography.MD5]::Create().ComputeHash($data)
([BitConverter]::ToString($hash) -replace '-').ToLower()