gitextract_uts1atzz/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Config.json ├── LICENSE ├── Pass4Win/ │ ├── About.Designer.cs │ ├── About.cs │ ├── About.de.resx │ ├── About.fr.resx │ ├── About.it.resx │ ├── About.nl.resx │ ├── About.resx │ ├── App.config │ ├── CmdLineOptions.cs │ ├── ConfigHandling.cs │ ├── DirectoryProvider.cs │ ├── FileProvider.cs │ ├── FileSystemInterface.cs │ ├── FodyWeavers.xml │ ├── Genpass.Designer.cs │ ├── Genpass.cs │ ├── Genpass.de.resx │ ├── Genpass.fr.resx │ ├── Genpass.it.resx │ ├── Genpass.nl.resx │ ├── Genpass.resx │ ├── GitHandling.cs │ ├── KeyMgm.Designer.cs │ ├── KeyMgm.cs │ ├── KeyMgm.de.resx │ ├── KeyMgm.fr.resx │ ├── KeyMgm.it.resx │ ├── KeyMgm.nl.resx │ ├── KeyMgm.resx │ ├── KeySelect.Designer.cs │ ├── KeySelect.cs │ ├── KeySelect.de.resx │ ├── KeySelect.fr.resx │ ├── KeySelect.it.resx │ ├── KeySelect.nl.resx │ ├── KeySelect.resx │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.de.resx │ ├── Main.fr.resx │ ├── Main.it.resx │ ├── Main.nl.resx │ ├── Main.resx │ ├── NativeMethods.cs │ ├── Pass4Win.FrmAbout.resources │ ├── Pass4Win.FrmConfig.resources │ ├── Pass4Win.FrmKeyManager.resources │ ├── Pass4Win.FrmMain.resources │ ├── Pass4Win.Genpass.resources │ ├── Pass4Win.KeySelect.resources │ ├── Pass4Win.Properties.Resources.resources │ ├── Pass4Win.Strings.resources │ ├── Pass4Win.csproj │ ├── Pass4WinConfig.json │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Strings.Designer.cs │ ├── Strings.de.resx │ ├── Strings.fr.resx │ ├── Strings.it.resx │ ├── Strings.nl.resx │ ├── Strings.resx │ ├── config.Designer.cs │ ├── config.cs │ ├── config.de.resx │ ├── config.fr.resx │ ├── config.it.resx │ ├── config.nl.resx │ ├── config.resx │ ├── icon/ │ │ └── open-iconic-master/ │ │ ├── .gitignore │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── bower.json │ ├── json/ │ │ └── Newtonsoft.Json.xml │ ├── packages.config │ ├── pass4win.il │ ├── pass4win.res │ └── pwgen.cs ├── Pass4Win.nsi ├── Pass4Win.sln ├── Pass4Win.xml ├── Pass4WinTests/ │ ├── ConfigHandlingTests.cs │ ├── FileSystemInterfaceTests.cs │ ├── FodyWeavers.xml │ ├── Pass4WinTests.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── PwgenTests.cs │ ├── Setup.cs │ ├── app.config │ └── packages.config ├── Pass4Win_coverage.xml └── README.md