如何解密谷歌铬密码

时间:2016-12-18 22:18:02

标签: java sqlite google-chrome encryption

您好我正在尝试获取Chrome保存的网站用户名和密码,但我无法在“登录数据”sqlite文件中解密password_value。 我总是得到这个错误

  

com.sun.jna.platform.win32.Win32Exception:密钥无效,可用于   指定的状态

。 在解密密码时

while (resultSet.next()) {
            System.out.println(resultSet.getString("origin_url"));
            System.out.println(resultSet.getString("username_value"));
            System.out.println(Crypt32Util.cryptUnprotectData(resultSet.getBytes("password_value")));
        }

0 个答案:

没有答案