Fix default ivLength in dump-db tool

This commit is contained in:
Nriver 2025-01-15 10:16:04 +08:00
parent 7dfeb20678
commit 9d32cd36ee

View File

@ -16,7 +16,7 @@ function decryptString(dataKey: any, cipherText: any) {
return str;
}
function decrypt(key: any, cipherText: any, ivLength = 13) {
function decrypt(key: any, cipherText: any, ivLength = 16) {
if (cipherText === null) {
return null;
}