Removing uppercase arg

This commit is contained in:
Fufu-btw 2026-06-10 11:42:47 +02:00
parent bc98429e1d
commit 1b8e9fd529
2 changed files with 3 additions and 4 deletions

View File

@ -50,7 +50,6 @@ class ROR13 extends Operation {
for (let i = 0; i < input.length; i++) { for (let i = 0; i < input.length; i++) {
const chr = input[i] & 0xFF; const chr = input[i] & 0xFF;
hash = this.ror(hash, 13); hash = this.ror(hash, 13);
hash = (hash + chr) >>> 0; hash = (hash + chr) >>> 0;
} }

View File

@ -16,7 +16,7 @@ TestRegister.addTests([
recipeConfig: [ recipeConfig: [
{ {
op: "ROR13", op: "ROR13",
args: [false] args: []
}, },
], ],
}, },
@ -27,7 +27,7 @@ TestRegister.addTests([
recipeConfig: [ recipeConfig: [
{ {
op: "ROR13", op: "ROR13",
args: [false] args: []
}, },
], ],
}, },
@ -38,7 +38,7 @@ TestRegister.addTests([
recipeConfig: [ recipeConfig: [
{ {
op: "ROR13", op: "ROR13",
args: [false] args: []
}, },
], ],
}, },