This commit is contained in:
zadam 2022-07-28 22:44:28 +02:00
parent 5a37547b37
commit 698ffd886d

View File

@ -28,7 +28,7 @@ function getDataKey(password) {
const encryptedDataKey = optionService.getOption('encryptedDataKey'); const encryptedDataKey = optionService.getOption('encryptedDataKey');
const decryptedDataKey = dataEncryptionService.decrypt(passwordDerivedKey, encryptedDataKey, 16); const decryptedDataKey = dataEncryptionService.decrypt(passwordDerivedKey, encryptedDataKey);
return decryptedDataKey; return decryptedDataKey;
} }