├── GPL-3 ├── Makefile ├── README.md ├── afssh ├── afssh.1.md ├── changelog ├── rfc4251.C ├── rfc4251.H ├── rfc4251_gmp.C ├── ssh-agent-filter.C ├── ssh-agent-filter.bash-completion ├── ssh-agent-filter.help2man ├── ssh-agent.h ├── ssh-askpass-noinput ├── ssh-askpass-noinput.1.md └── version.h /GPL-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/GPL-3 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/README.md -------------------------------------------------------------------------------- /afssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/afssh -------------------------------------------------------------------------------- /afssh.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/afssh.1.md -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/changelog -------------------------------------------------------------------------------- /rfc4251.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/rfc4251.C -------------------------------------------------------------------------------- /rfc4251.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/rfc4251.H -------------------------------------------------------------------------------- /rfc4251_gmp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/rfc4251_gmp.C -------------------------------------------------------------------------------- /ssh-agent-filter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/ssh-agent-filter.C -------------------------------------------------------------------------------- /ssh-agent-filter.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/ssh-agent-filter.bash-completion -------------------------------------------------------------------------------- /ssh-agent-filter.help2man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/ssh-agent-filter.help2man -------------------------------------------------------------------------------- /ssh-agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/ssh-agent.h -------------------------------------------------------------------------------- /ssh-askpass-noinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/ssh-askpass-noinput -------------------------------------------------------------------------------- /ssh-askpass-noinput.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiwe-de/ssh-agent-filter/HEAD/ssh-askpass-noinput.1.md -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- 1 | #define SSH_AGENT_FILTER_VERSION "ssh-agent-filter 0.4.2" 2 | --------------------------------------------------------------------------------