├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── translation.md ├── .gitignore ├── KeePassOTP.sln ├── LICENSE ├── README.md ├── Translations ├── KeePassOTP.de.language.xml ├── KeePassOTP.fr.language.xml ├── KeePassOTP.nl.language.xml ├── KeePassOTP.pt.language.xml ├── KeePassOTP.ru.language.xml ├── KeePassOTP.template.language.xml └── KeePassOTP.zh.language.xml ├── images ├── GoogleAuthImport_test.png ├── KeePassOTP - Column.png ├── KeePassOTP - OTPDB.png ├── KeePassOTP - options 2.png ├── KeePassOTP - options.png ├── KeePassOTP - setup advanced.png └── KeePassOTP - setup simple.png ├── plgxcreate.cmd ├── plgxexclude.txt ├── proto └── GoogleAuthenticator_Import.proto ├── src ├── CheckedGroupBox.cs ├── DAO │ ├── OTPDAO.cs │ ├── OTPDAO_DB.cs │ ├── OTPDAO_Entry.cs │ └── TFASites.cs ├── GoogleAuthenticator │ ├── GoogleAuthenticatorExportSelection.Designer.cs │ ├── GoogleAuthenticatorExportSelection.cs │ ├── GoogleAuthenticatorImport.cs │ ├── GoogleAuthenticatorImportSelection.Designer.cs │ └── GoogleAuthenticatorImportSelection.cs ├── HotkeyManager.cs ├── KPOTP_Details.Designer.cs ├── KPOTP_Details.cs ├── KeePassOTP.cs ├── KeePassOTP.csproj ├── KeePassOTPColumnProvider.cs ├── KeePassOTPExt.cs ├── KeePassOTPSetup.Designer.cs ├── KeePassOTPSetup.cs ├── Migration.cs ├── Options.Designer.cs ├── Options.cs ├── PluginTranslation.cs ├── Properties │ └── AssemblyInfo.cs ├── QRForm.Designer.cs ├── QRForm.cs ├── Resources │ ├── KeePassOTP_setup.png │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── qr-code-screencapture.png │ └── qr-code.png ├── Util.cs ├── Utilities │ ├── Debug.cs │ ├── Tools_Controls.cs │ ├── Tools_Main.cs │ ├── Tools_Options.cs │ └── Tools_UI.cs └── Yandex │ ├── Base26Encoder.cs │ ├── YaOtp.cs │ ├── YandexPin.cs │ └── YandexSecret.cs ├── translationcopy.cmd └── version.info /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/.github/ISSUE_TEMPLATE/translation.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/.gitignore -------------------------------------------------------------------------------- /KeePassOTP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/KeePassOTP.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/README.md -------------------------------------------------------------------------------- /Translations/KeePassOTP.de.language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/Translations/KeePassOTP.de.language.xml -------------------------------------------------------------------------------- /Translations/KeePassOTP.fr.language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/Translations/KeePassOTP.fr.language.xml -------------------------------------------------------------------------------- /Translations/KeePassOTP.nl.language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/Translations/KeePassOTP.nl.language.xml -------------------------------------------------------------------------------- /Translations/KeePassOTP.pt.language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/Translations/KeePassOTP.pt.language.xml -------------------------------------------------------------------------------- /Translations/KeePassOTP.ru.language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/Translations/KeePassOTP.ru.language.xml -------------------------------------------------------------------------------- /Translations/KeePassOTP.template.language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/Translations/KeePassOTP.template.language.xml -------------------------------------------------------------------------------- /Translations/KeePassOTP.zh.language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/Translations/KeePassOTP.zh.language.xml -------------------------------------------------------------------------------- /images/GoogleAuthImport_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/images/GoogleAuthImport_test.png -------------------------------------------------------------------------------- /images/KeePassOTP - Column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/images/KeePassOTP - Column.png -------------------------------------------------------------------------------- /images/KeePassOTP - OTPDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/images/KeePassOTP - OTPDB.png -------------------------------------------------------------------------------- /images/KeePassOTP - options 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/images/KeePassOTP - options 2.png -------------------------------------------------------------------------------- /images/KeePassOTP - options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/images/KeePassOTP - options.png -------------------------------------------------------------------------------- /images/KeePassOTP - setup advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/images/KeePassOTP - setup advanced.png -------------------------------------------------------------------------------- /images/KeePassOTP - setup simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/images/KeePassOTP - setup simple.png -------------------------------------------------------------------------------- /plgxcreate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/plgxcreate.cmd -------------------------------------------------------------------------------- /plgxexclude.txt: -------------------------------------------------------------------------------- 1 | bin\ 2 | obj\ 3 | .vs 4 | .git 5 | .user 6 | .sln 7 | .suo 8 | .pdb -------------------------------------------------------------------------------- /proto/GoogleAuthenticator_Import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/proto/GoogleAuthenticator_Import.proto -------------------------------------------------------------------------------- /src/CheckedGroupBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/CheckedGroupBox.cs -------------------------------------------------------------------------------- /src/DAO/OTPDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/DAO/OTPDAO.cs -------------------------------------------------------------------------------- /src/DAO/OTPDAO_DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/DAO/OTPDAO_DB.cs -------------------------------------------------------------------------------- /src/DAO/OTPDAO_Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/DAO/OTPDAO_Entry.cs -------------------------------------------------------------------------------- /src/DAO/TFASites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/DAO/TFASites.cs -------------------------------------------------------------------------------- /src/GoogleAuthenticator/GoogleAuthenticatorExportSelection.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/GoogleAuthenticator/GoogleAuthenticatorExportSelection.Designer.cs -------------------------------------------------------------------------------- /src/GoogleAuthenticator/GoogleAuthenticatorExportSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/GoogleAuthenticator/GoogleAuthenticatorExportSelection.cs -------------------------------------------------------------------------------- /src/GoogleAuthenticator/GoogleAuthenticatorImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/GoogleAuthenticator/GoogleAuthenticatorImport.cs -------------------------------------------------------------------------------- /src/GoogleAuthenticator/GoogleAuthenticatorImportSelection.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/GoogleAuthenticator/GoogleAuthenticatorImportSelection.Designer.cs -------------------------------------------------------------------------------- /src/GoogleAuthenticator/GoogleAuthenticatorImportSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/GoogleAuthenticator/GoogleAuthenticatorImportSelection.cs -------------------------------------------------------------------------------- /src/HotkeyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/HotkeyManager.cs -------------------------------------------------------------------------------- /src/KPOTP_Details.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/KPOTP_Details.Designer.cs -------------------------------------------------------------------------------- /src/KPOTP_Details.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/KPOTP_Details.cs -------------------------------------------------------------------------------- /src/KeePassOTP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/KeePassOTP.cs -------------------------------------------------------------------------------- /src/KeePassOTP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/KeePassOTP.csproj -------------------------------------------------------------------------------- /src/KeePassOTPColumnProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/KeePassOTPColumnProvider.cs -------------------------------------------------------------------------------- /src/KeePassOTPExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/KeePassOTPExt.cs -------------------------------------------------------------------------------- /src/KeePassOTPSetup.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/KeePassOTPSetup.Designer.cs -------------------------------------------------------------------------------- /src/KeePassOTPSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/KeePassOTPSetup.cs -------------------------------------------------------------------------------- /src/Migration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Migration.cs -------------------------------------------------------------------------------- /src/Options.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Options.Designer.cs -------------------------------------------------------------------------------- /src/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Options.cs -------------------------------------------------------------------------------- /src/PluginTranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/PluginTranslation.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/QRForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/QRForm.Designer.cs -------------------------------------------------------------------------------- /src/QRForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/QRForm.cs -------------------------------------------------------------------------------- /src/Resources/KeePassOTP_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Resources/KeePassOTP_setup.png -------------------------------------------------------------------------------- /src/Resources/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Resources/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Resources/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Resources/Resources.resx -------------------------------------------------------------------------------- /src/Resources/qr-code-screencapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Resources/qr-code-screencapture.png -------------------------------------------------------------------------------- /src/Resources/qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Resources/qr-code.png -------------------------------------------------------------------------------- /src/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Util.cs -------------------------------------------------------------------------------- /src/Utilities/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Utilities/Debug.cs -------------------------------------------------------------------------------- /src/Utilities/Tools_Controls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Utilities/Tools_Controls.cs -------------------------------------------------------------------------------- /src/Utilities/Tools_Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Utilities/Tools_Main.cs -------------------------------------------------------------------------------- /src/Utilities/Tools_Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Utilities/Tools_Options.cs -------------------------------------------------------------------------------- /src/Utilities/Tools_UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Utilities/Tools_UI.cs -------------------------------------------------------------------------------- /src/Yandex/Base26Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Yandex/Base26Encoder.cs -------------------------------------------------------------------------------- /src/Yandex/YaOtp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Yandex/YaOtp.cs -------------------------------------------------------------------------------- /src/Yandex/YandexPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Yandex/YandexPin.cs -------------------------------------------------------------------------------- /src/Yandex/YandexSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/src/Yandex/YandexSecret.cs -------------------------------------------------------------------------------- /translationcopy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/translationcopy.cmd -------------------------------------------------------------------------------- /version.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rookiestyle/KeePassOTP/HEAD/version.info --------------------------------------------------------------------------------