[Solved] Make MD5 raw in JavaScript
[ad_1] since you already have the hex, just use a hex2bin function, var m = hex2bin(md5(post_data)); / function hex2bin (s) { // discuss at: http://locutus.io/php/hex2bin/ // original by: Dumitru Uzun (http://duzun.me) // example 1: hex2bin(‘44696d61’) // returns 1: ‘Dima’ // example 2: hex2bin(’00’) // returns 2: ‘\x00’ // example 3: hex2bin(‘2f1q’) // returns 3: false … Read more