MD5: Difference between revisions

Content added Content deleted
(Added PureBasic solution)
Line 834: Line 834:
$hash = [Security.Cryptography.MD5]::Create().ComputeHash($data)
$hash = [Security.Cryptography.MD5]::Create().ComputeHash($data)
([BitConverter]::ToString($hash) -replace '-').ToLower()</lang>
([BitConverter]::ToString($hash) -replace '-').ToLower()</lang>

=={{header|PureBasic}}==
<lang purebasic>test.s = "The quick brown fox jumped over the lazy dog's back"
Debug MD5Fingerprint(@test, StringByteLength(test))</lang>


=={{header|Python}}==
=={{header|Python}}==