mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 00:36:16 -04:00
Fixed non-working buttons
This commit is contained in:
parent
566b423065
commit
d5f007deea
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue