├── .gitignore ├── DelayedEventHandler.cs ├── KeePassHIBP.csproj ├── KeePassHIBP.sln ├── KeePassHIBPExt.cs ├── LICENSE ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Resources └── B16x16_Icon.png └── keepass.version /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/.gitignore -------------------------------------------------------------------------------- /DelayedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/DelayedEventHandler.cs -------------------------------------------------------------------------------- /KeePassHIBP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/KeePassHIBP.csproj -------------------------------------------------------------------------------- /KeePassHIBP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/KeePassHIBP.sln -------------------------------------------------------------------------------- /KeePassHIBPExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/KeePassHIBPExt.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/LICENSE -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/README.md -------------------------------------------------------------------------------- /Resources/B16x16_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanisEst/KeePassHIBP/HEAD/Resources/B16x16_Icon.png -------------------------------------------------------------------------------- /keepass.version: -------------------------------------------------------------------------------- 1 | : 2 | KeePassHIBP:1.0.0 3 | : 4 | --------------------------------------------------------------------------------