This repository was archived by the owner on Sep 25, 2021. It is now read-only.

Description
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?