fix firefox for windows decrypt error

This commit is contained in:
ᴍᴏᴏɴD4ʀᴋ
2020-07-10 10:46:33 +08:00
parent dacfdbb21f
commit 3c8dc69700
3 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ func DecryptChromePass(encryptPass []byte) (string, error) {
// remove prefix 'v10'
return aesGCMDecrypt(encryptPass[15:], chromeKey, encryptPass[3:15])
} else {
return "", passwordIsEmpty
return "", errPasswordIsEmpty
}
}