mirror of
https://github.com/gchq/CyberChef
synced 2024-11-15 00:57:08 +00:00
OR now calls the correct function instead of duplicating XOR. Closes #243.
This commit is contained in:
parent
ab55b91da1
commit
50f2819699
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ OpModules.Default = {
|
|||
"Bit shift right": BitwiseOp.runBitShiftRight,
|
||||
"XOR": BitwiseOp.runXor,
|
||||
"XOR Brute Force": BitwiseOp.runXorBrute,
|
||||
"OR": BitwiseOp.runXor,
|
||||
"OR": BitwiseOp.runOr,
|
||||
"NOT": BitwiseOp.runNot,
|
||||
"AND": BitwiseOp.runAnd,
|
||||
"ADD": BitwiseOp.runAdd,
|
||||
|
|
Loading…
Reference in a new issue