MD5: Difference between revisions

164 bytes added ,  14 years ago
Added PureBasic solution
(Added PureBasic solution)
Line 834:
$hash = [Security.Cryptography.MD5]::Create().ComputeHash($data)
([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}}==
Anonymous user