├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── assets ├── .gitignore ├── KeePass-2.44-Source.zip ├── KeePass-2.44.zip ├── KeePass-portable │ ├── KeePass.XmlSerializers.dll │ ├── KeePass.chm │ ├── KeePass.exe │ ├── KeePass.exe.config │ ├── KeePassLibC32.dll │ ├── KeePassLibC64.dll │ ├── License.txt │ ├── ShInstUtil.exe │ └── XSL │ │ ├── KDBX_Common.xsl │ │ ├── KDBX_DetailsFull_HTML.xsl │ │ ├── KDBX_DetailsLight_HTML.xsl │ │ ├── KDBX_PasswordsOnly_TXT.xsl │ │ └── KDBX_Tabular_HTML.xsl ├── Release-build.bat ├── Release │ ├── KeePassCommander-4.5-debugpack.zip │ ├── KeePassCommander-4.5.zip │ ├── keepass.plugin.version.txt │ └── release.download.zip.url-location ├── lua │ ├── lua54.dll │ ├── lua54.exe │ ├── luac54.exe │ └── wlua54.exe ├── php-7.3.11-Win32-VC15-x64.zip └── php │ ├── php.exe │ └── php7ts.dll ├── docs ├── ListGroup.md ├── VirtualMachine.md ├── screenshot-listgroup-example.png └── screenshot-listgroup-output.png ├── example ├── CsharpExample.exe ├── CsharpExample.exe.config ├── CsharpExample │ └── src │ │ ├── CsharpExample.sln │ │ ├── CsharpExample │ │ ├── App.config │ │ ├── CsharpExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── CsharpExample_postbuild.bat │ │ ├── GlobalAssemblyInfo.cs │ │ └── common.props ├── FromBat.bat ├── FromLua.bat ├── FromLua.lua ├── FromPhp.bat ├── FromPhp.php ├── FromPowershell.bat ├── FromPowershell.ps1 ├── FromPowershellUsingDll.bat ├── FromPowershellUsingDll.ps1 ├── FromPython.bat ├── FromPython.py ├── example.kdbx ├── example.kdbx MASTER PASSWORD.txt └── examples.txt ├── screenshot.png ├── src ├── Encryption.cs ├── GlobalAssemblyInfo.cs ├── KeePassCommand │ ├── App.config │ ├── Command │ │ ├── CommandCommon.cs │ │ ├── CommandGetAttachmentRaw.cs │ │ ├── CommandGetFieldRaw.cs │ │ ├── CommandGetNoteRaw.cs │ │ ├── CommandListGroup.cs │ │ ├── ICommand.cs │ │ └── Runner.cs │ ├── KeePassCommand.csproj │ ├── KeePassCommand.csproj.user │ ├── KeePassCommand.example.config.xml │ ├── OutputUtils.cs │ ├── Program.cs │ ├── ProgramArguments.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── KeePassCommandDll │ ├── Api.cs │ ├── ApiGetAttachmentResponse.cs │ ├── ApiGetFieldResponse.cs │ ├── ApiGetResponse.cs │ ├── ApiListGroupResponse.cs │ ├── Communication │ │ ├── CommandSender.cs │ │ ├── ISendCommand.cs │ │ ├── LineReader.cs │ │ ├── Response.cs │ │ ├── ResponseItem.cs │ │ ├── SendCommandViaFileSystem.cs │ │ └── SendCommandViaNamedPipe.cs │ ├── KeePassCommandDll.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── XmlConfiguration.cs ├── KeePassCommand_postbuild.bat ├── KeePassCommander.sln ├── KeePassCommanderConsts.cs ├── KeePassCommanderPlugin │ ├── Command │ │ ├── CommandGet.cs │ │ ├── CommandGetAttachment.cs │ │ ├── CommandGetField.cs │ │ ├── CommandGetNote.cs │ │ ├── CommandListGroup.cs │ │ ├── EntriesHelper.cs │ │ ├── ICommand.cs │ │ └── Runner.cs │ ├── DebugLog.cs │ ├── KeePassCommander.csproj │ ├── KeePassCommanderExt.cs │ ├── NamedPipeServer │ │ ├── NamedPipeServer.cs │ │ └── NamedPipeServerConnection.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── ViaFileSystemServer │ │ ├── DirectoryWatcher.cs │ │ └── ViaFileSystemServer.cs ├── ProgrammingLanguagesConnectors │ ├── KeePassEntry.bat │ ├── KeePassEntry.cs │ ├── KeePassEntry.lua │ ├── KeePassEntry.php │ ├── KeePassEntry.ps1 │ ├── KeePassEntry.py │ └── KeePassEntryUsingDll.ps1 └── common.props └── tests ├── Expectations ├── Test.Command.get-recycle-bin-entry.bat.expected ├── Test.Command.get.bat.expected ├── Test.Command.getattachment.bat.expected ├── Test.Command.getattachmentraw.bat.expected ├── Test.Command.getfield.bat.expected ├── Test.Command.getfieldraw.bat.expected ├── Test.Command.getnote.bat.expected ├── Test.Command.getnoteraw.bat.expected ├── Test.Command.listgroup.bat.expected ├── Test.Command.unknown-command.bat.expected ├── Test.ProgrammingLanguage.Lua.bat.expected ├── Test.ProgrammingLanguage.Php.ListGroup.bat.expected ├── Test.ProgrammingLanguage.Php.bat.expected ├── Test.ProgrammingLanguage.Powershell.bat.expected ├── Test.ProgrammingLanguage.Python.bat.expected ├── Test.Stdout-utf8nobom.Command.get.65001.bat.expected ├── Test.Stdout-utf8nobom.Command.getfieldraw.65001.bat.expected ├── Test.Stdout-utf8nobom.Command.getnoteraw.65001.bat.expected ├── Test.filesystem.configfile.Command.get.bat.expected.AnotherEntry ├── Test.filesystem.configfile.Command.get.bat.expected.AnotherEntry-filesystem ├── Test.filesystem.configfile.Command.get.bat.expected.CsharpExample.auto ├── Test.filesystem.configfile.Command.get.bat.expected.CsharpExample.filesystem └── Test.filesystem.configfile.Command.get.bat.expected.CsharpExample.namedpipe ├── Test.Command.get-recycle-bin-entry.bat ├── Test.Command.get.bat ├── Test.Command.getattachment.bat ├── Test.Command.getattachmentraw.bat ├── Test.Command.getattachmentraw.stdout.bat ├── Test.Command.getfield.bat ├── Test.Command.getfieldraw.bat ├── Test.Command.getfieldraw.stdout-utf8.bat ├── Test.Command.getnote.bat ├── Test.Command.getnoteraw.bat ├── Test.Command.getnoteraw.stdout-utf8.bat ├── Test.Command.listgroup.bat ├── Test.Command.unknown-command.bat ├── Test.ProgrammingLanguage.Lua.bat ├── Test.ProgrammingLanguage.Lua.lua ├── Test.ProgrammingLanguage.Php.ListGroup.bat ├── Test.ProgrammingLanguage.Php.ListGroup.php ├── Test.ProgrammingLanguage.Php.bat ├── Test.ProgrammingLanguage.Php.php ├── Test.ProgrammingLanguage.Powershell.bat ├── Test.ProgrammingLanguage.Powershell.ps1 ├── Test.ProgrammingLanguage.PowershellUsingDll.bat ├── Test.ProgrammingLanguage.PowershellUsingDll.ps1 ├── Test.ProgrammingLanguage.Python.bat ├── Test.ProgrammingLanguage.Python.py ├── Test.Stdout-utf8nobom.Command.get.65001.bat ├── Test.Stdout-utf8nobom.Command.get.858.bat ├── Test.Stdout-utf8nobom.Command.getfieldraw.65001.bat ├── Test.Stdout-utf8nobom.Command.getfieldraw.858.bat ├── Test.Stdout-utf8nobom.Command.getnoteraw.65001.bat ├── Test.Stdout-utf8nobom.Command.getnoteraw.858.bat ├── Test.filesystem.Command.get.bat ├── Test.filesystem.KeePassCommand.config.xml ├── Test.filesystem.configfile.Command.get.bat ├── Utils ├── Utils.chcp.bat ├── Utils.diff.bat └── Utils.test-setup.bat └── run.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/README.md -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- 1 | /DebugKeePass.* -------------------------------------------------------------------------------- /assets/KeePass-2.44-Source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-2.44-Source.zip -------------------------------------------------------------------------------- /assets/KeePass-2.44.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-2.44.zip -------------------------------------------------------------------------------- /assets/KeePass-portable/KeePass.XmlSerializers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/KeePass.XmlSerializers.dll -------------------------------------------------------------------------------- /assets/KeePass-portable/KeePass.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/KeePass.chm -------------------------------------------------------------------------------- /assets/KeePass-portable/KeePass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/KeePass.exe -------------------------------------------------------------------------------- /assets/KeePass-portable/KeePass.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/KeePass.exe.config -------------------------------------------------------------------------------- /assets/KeePass-portable/KeePassLibC32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/KeePassLibC32.dll -------------------------------------------------------------------------------- /assets/KeePass-portable/KeePassLibC64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/KeePassLibC64.dll -------------------------------------------------------------------------------- /assets/KeePass-portable/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/License.txt -------------------------------------------------------------------------------- /assets/KeePass-portable/ShInstUtil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/ShInstUtil.exe -------------------------------------------------------------------------------- /assets/KeePass-portable/XSL/KDBX_Common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/XSL/KDBX_Common.xsl -------------------------------------------------------------------------------- /assets/KeePass-portable/XSL/KDBX_DetailsFull_HTML.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/XSL/KDBX_DetailsFull_HTML.xsl -------------------------------------------------------------------------------- /assets/KeePass-portable/XSL/KDBX_DetailsLight_HTML.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/XSL/KDBX_DetailsLight_HTML.xsl -------------------------------------------------------------------------------- /assets/KeePass-portable/XSL/KDBX_PasswordsOnly_TXT.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/XSL/KDBX_PasswordsOnly_TXT.xsl -------------------------------------------------------------------------------- /assets/KeePass-portable/XSL/KDBX_Tabular_HTML.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/KeePass-portable/XSL/KDBX_Tabular_HTML.xsl -------------------------------------------------------------------------------- /assets/Release-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/Release-build.bat -------------------------------------------------------------------------------- /assets/Release/KeePassCommander-4.5-debugpack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/Release/KeePassCommander-4.5-debugpack.zip -------------------------------------------------------------------------------- /assets/Release/KeePassCommander-4.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/Release/KeePassCommander-4.5.zip -------------------------------------------------------------------------------- /assets/Release/keepass.plugin.version.txt: -------------------------------------------------------------------------------- 1 | : 2 | KeePassCommander:4.5 3 | : 4 | -------------------------------------------------------------------------------- /assets/Release/release.download.zip.url-location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/Release/release.download.zip.url-location -------------------------------------------------------------------------------- /assets/lua/lua54.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/lua/lua54.dll -------------------------------------------------------------------------------- /assets/lua/lua54.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/lua/lua54.exe -------------------------------------------------------------------------------- /assets/lua/luac54.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/lua/luac54.exe -------------------------------------------------------------------------------- /assets/lua/wlua54.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/lua/wlua54.exe -------------------------------------------------------------------------------- /assets/php-7.3.11-Win32-VC15-x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/php-7.3.11-Win32-VC15-x64.zip -------------------------------------------------------------------------------- /assets/php/php.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/php/php.exe -------------------------------------------------------------------------------- /assets/php/php7ts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/assets/php/php7ts.dll -------------------------------------------------------------------------------- /docs/ListGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/docs/ListGroup.md -------------------------------------------------------------------------------- /docs/VirtualMachine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/docs/VirtualMachine.md -------------------------------------------------------------------------------- /docs/screenshot-listgroup-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/docs/screenshot-listgroup-example.png -------------------------------------------------------------------------------- /docs/screenshot-listgroup-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/docs/screenshot-listgroup-output.png -------------------------------------------------------------------------------- /example/CsharpExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample.exe -------------------------------------------------------------------------------- /example/CsharpExample.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample.exe.config -------------------------------------------------------------------------------- /example/CsharpExample/src/CsharpExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample/src/CsharpExample.sln -------------------------------------------------------------------------------- /example/CsharpExample/src/CsharpExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample/src/CsharpExample/App.config -------------------------------------------------------------------------------- /example/CsharpExample/src/CsharpExample/CsharpExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample/src/CsharpExample/CsharpExample.csproj -------------------------------------------------------------------------------- /example/CsharpExample/src/CsharpExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample/src/CsharpExample/Program.cs -------------------------------------------------------------------------------- /example/CsharpExample/src/CsharpExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample/src/CsharpExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /example/CsharpExample/src/CsharpExample_postbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample/src/CsharpExample_postbuild.bat -------------------------------------------------------------------------------- /example/CsharpExample/src/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample/src/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /example/CsharpExample/src/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/CsharpExample/src/common.props -------------------------------------------------------------------------------- /example/FromBat.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromBat.bat -------------------------------------------------------------------------------- /example/FromLua.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromLua.bat -------------------------------------------------------------------------------- /example/FromLua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromLua.lua -------------------------------------------------------------------------------- /example/FromPhp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromPhp.bat -------------------------------------------------------------------------------- /example/FromPhp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromPhp.php -------------------------------------------------------------------------------- /example/FromPowershell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromPowershell.bat -------------------------------------------------------------------------------- /example/FromPowershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromPowershell.ps1 -------------------------------------------------------------------------------- /example/FromPowershellUsingDll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromPowershellUsingDll.bat -------------------------------------------------------------------------------- /example/FromPowershellUsingDll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromPowershellUsingDll.ps1 -------------------------------------------------------------------------------- /example/FromPython.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromPython.bat -------------------------------------------------------------------------------- /example/FromPython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/FromPython.py -------------------------------------------------------------------------------- /example/example.kdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/example.kdbx -------------------------------------------------------------------------------- /example/example.kdbx MASTER PASSWORD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/example.kdbx MASTER PASSWORD.txt -------------------------------------------------------------------------------- /example/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/example/examples.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/Encryption.cs -------------------------------------------------------------------------------- /src/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /src/KeePassCommand/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/App.config -------------------------------------------------------------------------------- /src/KeePassCommand/Command/CommandCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/Command/CommandCommon.cs -------------------------------------------------------------------------------- /src/KeePassCommand/Command/CommandGetAttachmentRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/Command/CommandGetAttachmentRaw.cs -------------------------------------------------------------------------------- /src/KeePassCommand/Command/CommandGetFieldRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/Command/CommandGetFieldRaw.cs -------------------------------------------------------------------------------- /src/KeePassCommand/Command/CommandGetNoteRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/Command/CommandGetNoteRaw.cs -------------------------------------------------------------------------------- /src/KeePassCommand/Command/CommandListGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/Command/CommandListGroup.cs -------------------------------------------------------------------------------- /src/KeePassCommand/Command/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/Command/ICommand.cs -------------------------------------------------------------------------------- /src/KeePassCommand/Command/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/Command/Runner.cs -------------------------------------------------------------------------------- /src/KeePassCommand/KeePassCommand.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/KeePassCommand.csproj -------------------------------------------------------------------------------- /src/KeePassCommand/KeePassCommand.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/KeePassCommand.csproj.user -------------------------------------------------------------------------------- /src/KeePassCommand/KeePassCommand.example.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/KeePassCommand.example.config.xml -------------------------------------------------------------------------------- /src/KeePassCommand/OutputUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/OutputUtils.cs -------------------------------------------------------------------------------- /src/KeePassCommand/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/Program.cs -------------------------------------------------------------------------------- /src/KeePassCommand/ProgramArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/ProgramArguments.cs -------------------------------------------------------------------------------- /src/KeePassCommand/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/Api.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/ApiGetAttachmentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/ApiGetAttachmentResponse.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/ApiGetFieldResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/ApiGetFieldResponse.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/ApiGetResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/ApiGetResponse.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/ApiListGroupResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/ApiListGroupResponse.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/Communication/CommandSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/Communication/CommandSender.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/Communication/ISendCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/Communication/ISendCommand.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/Communication/LineReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/Communication/LineReader.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/Communication/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/Communication/Response.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/Communication/ResponseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/Communication/ResponseItem.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/Communication/SendCommandViaFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/Communication/SendCommandViaFileSystem.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/Communication/SendCommandViaNamedPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/Communication/SendCommandViaNamedPipe.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/KeePassCommandDll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/KeePassCommandDll.csproj -------------------------------------------------------------------------------- /src/KeePassCommandDll/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/KeePassCommandDll/XmlConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommandDll/XmlConfiguration.cs -------------------------------------------------------------------------------- /src/KeePassCommand_postbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommand_postbuild.bat -------------------------------------------------------------------------------- /src/KeePassCommander.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommander.sln -------------------------------------------------------------------------------- /src/KeePassCommanderConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderConsts.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/Command/CommandGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/Command/CommandGet.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/Command/CommandGetAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/Command/CommandGetAttachment.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/Command/CommandGetField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/Command/CommandGetField.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/Command/CommandGetNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/Command/CommandGetNote.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/Command/CommandListGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/Command/CommandListGroup.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/Command/EntriesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/Command/EntriesHelper.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/Command/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/Command/ICommand.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/Command/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/Command/Runner.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/DebugLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/DebugLog.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/KeePassCommander.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/KeePassCommander.csproj -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/KeePassCommanderExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/KeePassCommanderExt.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/NamedPipeServer/NamedPipeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/NamedPipeServer/NamedPipeServer.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/NamedPipeServer/NamedPipeServerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/NamedPipeServer/NamedPipeServerConnection.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/ViaFileSystemServer/DirectoryWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/ViaFileSystemServer/DirectoryWatcher.cs -------------------------------------------------------------------------------- /src/KeePassCommanderPlugin/ViaFileSystemServer/ViaFileSystemServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/KeePassCommanderPlugin/ViaFileSystemServer/ViaFileSystemServer.cs -------------------------------------------------------------------------------- /src/ProgrammingLanguagesConnectors/KeePassEntry.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/ProgrammingLanguagesConnectors/KeePassEntry.bat -------------------------------------------------------------------------------- /src/ProgrammingLanguagesConnectors/KeePassEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/ProgrammingLanguagesConnectors/KeePassEntry.cs -------------------------------------------------------------------------------- /src/ProgrammingLanguagesConnectors/KeePassEntry.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/ProgrammingLanguagesConnectors/KeePassEntry.lua -------------------------------------------------------------------------------- /src/ProgrammingLanguagesConnectors/KeePassEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/ProgrammingLanguagesConnectors/KeePassEntry.php -------------------------------------------------------------------------------- /src/ProgrammingLanguagesConnectors/KeePassEntry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/ProgrammingLanguagesConnectors/KeePassEntry.ps1 -------------------------------------------------------------------------------- /src/ProgrammingLanguagesConnectors/KeePassEntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/ProgrammingLanguagesConnectors/KeePassEntry.py -------------------------------------------------------------------------------- /src/ProgrammingLanguagesConnectors/KeePassEntryUsingDll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/ProgrammingLanguagesConnectors/KeePassEntryUsingDll.ps1 -------------------------------------------------------------------------------- /src/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/src/common.props -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.get-recycle-bin-entry.bat.expected: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.get.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.Command.get.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.getattachment.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.Command.getattachment.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.getattachmentraw.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.Command.getattachmentraw.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.getfield.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.Command.getfield.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.getfieldraw.bat.expected: -------------------------------------------------------------------------------- 1 | Some extra password -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.getnote.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.Command.getnote.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.getnoteraw.bat.expected: -------------------------------------------------------------------------------- 1 | Notes Één €ûrò -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.listgroup.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.Command.listgroup.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.Command.unknown-command.bat.expected: -------------------------------------------------------------------------------- 1 | ERROR 2 | unknown command: getnotes 3 | 4 | -------------------------------------------------------------------------------- /tests/Expectations/Test.ProgrammingLanguage.Lua.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.ProgrammingLanguage.Lua.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.ProgrammingLanguage.Php.ListGroup.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.ProgrammingLanguage.Php.ListGroup.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.ProgrammingLanguage.Php.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.ProgrammingLanguage.Php.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.ProgrammingLanguage.Powershell.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.ProgrammingLanguage.Powershell.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.ProgrammingLanguage.Python.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.ProgrammingLanguage.Python.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.Stdout-utf8nobom.Command.get.65001.bat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.Stdout-utf8nobom.Command.get.65001.bat.expected -------------------------------------------------------------------------------- /tests/Expectations/Test.Stdout-utf8nobom.Command.getfieldraw.65001.bat.expected: -------------------------------------------------------------------------------- 1 | ExtraFieldValue@Notes Één €ûrò -------------------------------------------------------------------------------- /tests/Expectations/Test.Stdout-utf8nobom.Command.getnoteraw.65001.bat.expected: -------------------------------------------------------------------------------- 1 | Notes@Notes Één €ûrò -------------------------------------------------------------------------------- /tests/Expectations/Test.filesystem.configfile.Command.get.bat.expected.AnotherEntry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.filesystem.configfile.Command.get.bat.expected.AnotherEntry -------------------------------------------------------------------------------- /tests/Expectations/Test.filesystem.configfile.Command.get.bat.expected.AnotherEntry-filesystem: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | -------------------------------------------------------------------------------- /tests/Expectations/Test.filesystem.configfile.Command.get.bat.expected.CsharpExample.auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.filesystem.configfile.Command.get.bat.expected.CsharpExample.auto -------------------------------------------------------------------------------- /tests/Expectations/Test.filesystem.configfile.Command.get.bat.expected.CsharpExample.filesystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.filesystem.configfile.Command.get.bat.expected.CsharpExample.filesystem -------------------------------------------------------------------------------- /tests/Expectations/Test.filesystem.configfile.Command.get.bat.expected.CsharpExample.namedpipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Expectations/Test.filesystem.configfile.Command.get.bat.expected.CsharpExample.namedpipe -------------------------------------------------------------------------------- /tests/Test.Command.get-recycle-bin-entry.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.get-recycle-bin-entry.bat -------------------------------------------------------------------------------- /tests/Test.Command.get.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.get.bat -------------------------------------------------------------------------------- /tests/Test.Command.getattachment.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.getattachment.bat -------------------------------------------------------------------------------- /tests/Test.Command.getattachmentraw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.getattachmentraw.bat -------------------------------------------------------------------------------- /tests/Test.Command.getattachmentraw.stdout.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.getattachmentraw.stdout.bat -------------------------------------------------------------------------------- /tests/Test.Command.getfield.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.getfield.bat -------------------------------------------------------------------------------- /tests/Test.Command.getfieldraw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.getfieldraw.bat -------------------------------------------------------------------------------- /tests/Test.Command.getfieldraw.stdout-utf8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.getfieldraw.stdout-utf8.bat -------------------------------------------------------------------------------- /tests/Test.Command.getnote.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.getnote.bat -------------------------------------------------------------------------------- /tests/Test.Command.getnoteraw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.getnoteraw.bat -------------------------------------------------------------------------------- /tests/Test.Command.getnoteraw.stdout-utf8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.getnoteraw.stdout-utf8.bat -------------------------------------------------------------------------------- /tests/Test.Command.listgroup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.listgroup.bat -------------------------------------------------------------------------------- /tests/Test.Command.unknown-command.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Command.unknown-command.bat -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Lua.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Lua.bat -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Lua.lua -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Php.ListGroup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Php.ListGroup.bat -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Php.ListGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Php.ListGroup.php -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Php.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Php.bat -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Php.php -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Powershell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Powershell.bat -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Powershell.ps1 -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.PowershellUsingDll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.PowershellUsingDll.bat -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.PowershellUsingDll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.PowershellUsingDll.ps1 -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Python.bat -------------------------------------------------------------------------------- /tests/Test.ProgrammingLanguage.Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.ProgrammingLanguage.Python.py -------------------------------------------------------------------------------- /tests/Test.Stdout-utf8nobom.Command.get.65001.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Stdout-utf8nobom.Command.get.65001.bat -------------------------------------------------------------------------------- /tests/Test.Stdout-utf8nobom.Command.get.858.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Stdout-utf8nobom.Command.get.858.bat -------------------------------------------------------------------------------- /tests/Test.Stdout-utf8nobom.Command.getfieldraw.65001.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Stdout-utf8nobom.Command.getfieldraw.65001.bat -------------------------------------------------------------------------------- /tests/Test.Stdout-utf8nobom.Command.getfieldraw.858.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Stdout-utf8nobom.Command.getfieldraw.858.bat -------------------------------------------------------------------------------- /tests/Test.Stdout-utf8nobom.Command.getnoteraw.65001.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Stdout-utf8nobom.Command.getnoteraw.65001.bat -------------------------------------------------------------------------------- /tests/Test.Stdout-utf8nobom.Command.getnoteraw.858.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.Stdout-utf8nobom.Command.getnoteraw.858.bat -------------------------------------------------------------------------------- /tests/Test.filesystem.Command.get.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.filesystem.Command.get.bat -------------------------------------------------------------------------------- /tests/Test.filesystem.KeePassCommand.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.filesystem.KeePassCommand.config.xml -------------------------------------------------------------------------------- /tests/Test.filesystem.configfile.Command.get.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Test.filesystem.configfile.Command.get.bat -------------------------------------------------------------------------------- /tests/Utils/Utils.chcp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Utils/Utils.chcp.bat -------------------------------------------------------------------------------- /tests/Utils/Utils.diff.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Utils/Utils.diff.bat -------------------------------------------------------------------------------- /tests/Utils/Utils.test-setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/Utils/Utils.test-setup.bat -------------------------------------------------------------------------------- /tests/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MircoBabin/KeePassCommander/HEAD/tests/run.bat --------------------------------------------------------------------------------