Skip to content

Commit

Permalink
Fix default ivLength in dump-db tool
Browse files Browse the repository at this point in the history
  • Loading branch information
Nriver committed Jan 15, 2025
1 parent 7dfeb20 commit 9d32cd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dump-db/inc/decrypt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 9d32cd3

Please sign in to comment.