fix: firefox for windows decrypt failure

This commit is contained in:
ᴍᴏᴏɴD4ʀᴋ
2020-07-10 10:46:33 +08:00
parent 206b53417f
commit 4f80bd0ca7
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
}
}