├── .gitignore ├── Account.cs ├── AesGcm.cs ├── App.config ├── BCrypt.cs ├── ChromeRecovery.csproj ├── Chromium.cs ├── LICENSE ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md └── SQLite.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/.gitignore -------------------------------------------------------------------------------- /Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/Account.cs -------------------------------------------------------------------------------- /AesGcm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/AesGcm.cs -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/App.config -------------------------------------------------------------------------------- /BCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/BCrypt.cs -------------------------------------------------------------------------------- /ChromeRecovery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/ChromeRecovery.csproj -------------------------------------------------------------------------------- /Chromium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/Chromium.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/README.md -------------------------------------------------------------------------------- /SQLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xfd3/Chrome-Password-Recovery/HEAD/SQLite.cs --------------------------------------------------------------------------------