mirror of
https://github.com/gchq/CyberChef
synced 2025-12-17 00:33:57 +00:00
Updated dependencies
This commit is contained in:
@@ -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":
|
||||
|
||||
Reference in New Issue
Block a user