update error message

This commit is contained in:
liamcottle
2024-05-27 01:29:08 +12:00
parent 43d6f5be75
commit 1fb6a27ab0

View File

@ -246,7 +246,7 @@ function decrypt(packet) {
algorithm = "aes-256-ctr";
} else {
// skip this key, try the next one...
console.error(`Invalid decryption key length: ${key.length}`);
console.error(`Skipping decryption key with invalid length: ${key.length}`);
continue;
}