2
0
mirror of https://github.com/gchq/CyberChef synced 2026-01-07 11:03:18 +00:00
This commit is contained in:
john19696
2022-09-23 11:38:15 +01:00
parent be97a0062e
commit 312be4772c

View File

@@ -147,7 +147,7 @@ class GenerateAllHashes extends Operation {
}
}
// output the values base on the args: length & names
if (length === "All" || value.length === parseInt(length)) {
if (length === "All" || value.length === parseInt(length, 10)) {
if (names) {
output += hash.name + ":" + " ".repeat(13-hash.name.length);
}