mirror of
https://github.com/zadam/trilium.git
synced 2024-11-17 13:14:44 +08:00
36 lines
No EOL
1.2 KiB
JavaScript
36 lines
No EOL
1.2 KiB
JavaScript
const optionService = require('./options');
|
|
const myScryptService = require('./my_scrypt');
|
|
const utils = require('./utils');
|
|
const dataEncryptionService = require('./data_encryption');
|
|
|
|
async function verifyPassword(password) {
|
|
const givenPasswordHash = utils.toBase64(await myScryptService.getVerificationHash(password));
|
|
|
|
const dbPasswordHash = await optionService.getOption('passwordVerificationHash');
|
|
|
|
return givenPasswordHash === dbPasswordHash;
|
|
}
|
|
|
|
async function setDataKey(password, plainTextDataKey) {
|
|
const passwordDerivedKey = await myScryptService.getPasswordDerivedKey(password);
|
|
|
|
const newEncryptedDataKey = dataEncryptionService.encrypt(passwordDerivedKey, plainTextDataKey, 16);
|
|
|
|
await optionService.setOption('encryptedDataKey', newEncryptedDataKey);
|
|
}
|
|
|
|
async function getDataKey(password) {
|
|
const passwordDerivedKey = await myScryptService.getPasswordDerivedKey(password);
|
|
|
|
const encryptedDataKey = await optionService.getOption('encryptedDataKey');
|
|
|
|
const decryptedDataKey = dataEncryptionService.decrypt(passwordDerivedKey, encryptedDataKey, 16);
|
|
|
|
return decryptedDataKey;
|
|
}
|
|
|
|
module.exports = {
|
|
verifyPassword,
|
|
getDataKey,
|
|
setDataKey
|
|
}; |