2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-17 00:33:57 +00:00

Updated dependencies

This commit is contained in:
n1474335
2018-01-26 19:14:05 +00:00
parent 614af0602a
commit 1c711f5e03
9 changed files with 1722 additions and 256 deletions

View File

@@ -555,7 +555,7 @@ DES uses a key length of 8 bytes (64 bits).`;
return forge.util.bytesToHex(bytes);
case "Integer":
for (i = bytes.length - 1; i >= 0; i--) {
value = value.mul(256).plus(bytes.charCodeAt(i));
value = value.times(256).plus(bytes.charCodeAt(i));
}
return value.toFixed();
case "Byte array":