add reset code

This commit is contained in:
RainSun 2020-03-08 14:26:35 +08:00
parent 95f6f3b8c9
commit 843002b3d5
4 changed files with 44 additions and 13 deletions

View File

@ -282,6 +282,14 @@ export function lang() {
CHS:{
title: '更新日志',
timeline: [
{
label: '设置中的重置主密码功能启用',
tag:'功能更新',
content: [
'设置中的重置主密码功能启用,重置后即可使用新密码解锁密码本,另改进了解锁页的密码错误判断逻辑',
'2020-03-08'
]
},
{
label: '新建密码记录生成的密码支持复制',
tag:'功能更新',
@ -375,6 +383,14 @@ export function lang() {
EN:{
title: 'Update Log',
timeline: [
{
label: 'The reset master password function is enabled in the settings',
tag:'Feature update',
content: [
'The reset master password function is enabled in the settings. After resetting, you can use the new password to unlock the password book, and improve the password error judgment logic on the unlock page',
'2020-03-08'
]
},
{
label: 'Generated passwords support replication',
tag:'Feature update',

View File

@ -183,13 +183,6 @@ export default {
this.turnToUnlock('密码错误');
return;
}
//
if (!data_decrypt) {
//
//
this.turnToUnlock('密码错误');
return;
}
//
let data_list = JSON.parse(data_decrypt);
this.show_list = data_list;

View File

@ -285,6 +285,26 @@ export default {
this.snakebar_msg = this.lang.snakebar_msg.reset_pwd_failed;
this.show_snackbar = true;
}
//
if (this.row_data) {
//
let main_code_decrpt = decryptMainCode(this.row_pwd.main_code);
let data_decrypt;
//
try {
data_decrypt = decrypt(main_code_decrpt, this.row_data);
} catch (e) {
//
//
console.log(e);
this.turnToHome('密码错误');
return;
}
let data_list = JSON.parse(data_decrypt);
let data_list_aes = encrypt(new_main_pwd, data_list);
this.setRowData([data_list_aes, this]);
console.log('密码本密码修改成功,覆写完成')
}
let main_code_aes = encryptMainCode(new_main_pwd);
let row_pwd = {
main_code: main_code_aes,

View File

@ -101,17 +101,19 @@ export default {
//
if (!this.is_create) {
//
let test_decode = decrypt(this.pwd, this.row_data);
//
if (test_decode) {
// ,locolstorage
this.submit();
} else {
//
let test_decode
try {
test_decode = decrypt(this.pwd, this.row_data);
} catch (e) {
//
this.is_err = true;
this.err_msg = this.lang.wrong_pwd_error;
console.log('密码输入错误拦截');
return
}
// ,locolstorage
this.submit();
} else {
//
if (this.pwd == this.repeat) {