@ -11,7 +11,7 @@ function verifyPassword(password) {
if (!dbPasswordHash) {
return false;
}
return givenPasswordHash === dbPasswordHash;
@ -28,7 +28,7 @@ function getDataKey(password) {
const encryptedDataKey = optionService.getOption('encryptedDataKey');
const decryptedDataKey = dataEncryptionService.decrypt(passwordDerivedKey, encryptedDataKey, 16);
const decryptedDataKey = dataEncryptionService.decrypt(passwordDerivedKey, encryptedDataKey);
return decryptedDataKey;