mirror of
https://github.com/gchq/CyberChef.git
synced 2026-02-06 17:36:52 +00:00
Fixed non-working buttons
This commit is contained in:
parent
566b423065
commit
d5f007deea
@ -907,8 +907,8 @@ class CRCChecksum extends Operation {
|
||||
const width = BigInt(widthObject.string);
|
||||
const poly = BigInt("0x" + polyObject.string);
|
||||
const init = BigInt("0x" + initObject.string);
|
||||
const reflectIn = reflectInObject.string === "True";
|
||||
const reflectOut = reflectOutObject.string === "True";
|
||||
const reflectIn = reflectInObject === "True";
|
||||
const reflectOut = reflectOutObject === "True";
|
||||
const xorOut = BigInt("0x" + xorOutObject.string);
|
||||
|
||||
return this.crc(width, input, poly, init, reflectIn, reflectOut, xorOut);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user