COD3369 Posted October 18, 2013 Posted October 18, 2013 While 1 Local $sData = InetRead( "http://wwww.google.com" ) Local $sHash = _Crypt_HashData($sData, $CALG_MD5) MsgBox ( 0 , "Hash" , "Hash: " & $sHash ) FileWriteLine ( "hash.txt" , $sHash ) sleep(3000) wend it creates file called hash.txt i am expecting md5 hash of $sData in file but it writes some unreadable strings !! ??
mrflibblehat Posted October 18, 2013 Posted October 18, 2013 (edited) Try This, Convert it to Hex() While 1 Local $sData = InetRead( "http://wwww.google.com" ) Local $sHash = _Crypt_HashData($sData, $CALG_MD5) MsgBox ( 0 , "Hash" , "Hash: " & $sHash ) FileWriteLine ( "hash.txt" , Hex($sHash) ) sleep(3000) wend Edited October 18, 2013 by mrflibblehat [font="'courier new', courier, monospace;"]Pastebin UDF | Prowl UDF[/font]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now