add reset code
This commit is contained in:
parent
95f6f3b8c9
commit
843002b3d5
@ -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',
|
||||
|
@ -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;
|
||||
|
@ -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,
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user