You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.
I am trying to migrate from node-forge to blueimp-mp5 + web crypto api.
I created test script:
` var hex = 'B955EF8C83544AD74F803321866F005A';
var bytesStr = forge.util.hexToBytes(hex);
var data = bytesStr;
var h1 = forge.md.md5.create().start().update(data).digest().getBytes();
var h2 = md5(data, null, true);
console.log("H1: ", h1);
console.log("H2: ", h2);`
If 'data' is normal string, everything seems to work fine. But if 'data' is binary (like in example), hashes are different.
Am I doing something wrong or is it bug please?
The text was updated successfully, but these errors were encountered:
I am trying to migrate from node-forge to blueimp-mp5 + web crypto api.
I created test script:
` var hex = 'B955EF8C83544AD74F803321866F005A';
If 'data' is normal string, everything seems to work fine. But if 'data' is binary (like in example), hashes are different.
Am I doing something wrong or is it bug please?
The text was updated successfully, but these errors were encountered: