a proxy to ssh-agent and Pageant in Java.
jsch-agent-proxy is a proxy program to OpenSSH's ssh-agent and Pageant included Putty. It will be easily integrated into JSch, and users will be allowed to use those programs in authentications. This software has been developed for JSch, but it will be easily applicable to other ssh2 implementations in Java. This software is licensed under BSD style license.
$ git clone git://github.com/ymnk/jsch-agent-proxy.git
$ cd jsch-agent-proxy
$ mvn package
$ mvn install
-
UsingPageant.java
This sample demonstrates how to get accesses to Pageant.$ cd examples $ cd compile $ mvn exec:java \ -Dexec.mainClass="com.jcraft.jsch.agentproxy.examples.UsingPageant"
-
UsingSSHAgent.java
This sample demonstrates how to get accesses to ssh-agent.$ cd examples $ mvn compile $ mvn exec:java \ -Dexec.mainClass="com.jcraft.jsch.agentproxy.examples.UsingSSHAgent"
-
JSchWithAgentProxy.java
This sample demonstrates how to integrate jsch-agent-proxy into JSch.$ cd examples $ mvn compile $ mvn exec:java \ -Dexec.mainClass="com.jcraft.jsch.agentproxy.examples.JSchWithAgentProxy" \ -Dexec.args="[email protected]"
-
SshjWithAgentProxy.java
This sample demonstrates how to integrate jsch-agent-proxy into sshj.$ cd examples $ mvn compile $ mvn exec:java \ -Dexec.mainClass="com.jcraft.jsch.agentproxy.examples.SshjWithAgentProxy" \ -Dexec.args="[email protected]"
-
TrileadWithAgentProxy.java
This sample demonstrates how to integrate jsch-agent-proxy into Trilead SSH2 (SVNKit fork).$ cd examples $ mvn compile $ mvn exec:java \ -Dexec.mainClass="com.jcraft.jsch.agentproxy.examples.TrileadWithAgentProxy" \ -Dexec.args="[email protected] date"
To work as a proxy to ssh-agent and Pageant, the current implementation depends on the following software,
- JNA: https://github.com/twall/jna licensed under the GNU LGPL and the Apache License 2.0
- junixsocket: http://code.google.com/p/junixsocket/ licensed under the Apache License 2.0
- OpenBSD's netcat: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/nc/
As for connections to ssh-agent, unix domain sockets must be handled, and the current implementation has been using JNA or junixsocket for that purpose. Refer to following classes,
- com.jcraft.jsch.agentproxy.usocket.JNAUSocketFactory
- com.jcraft.jsch.agentproxy.usocket.JUnixDomainSocketFactory
- com.jcraft.jsch.agentproxy.usocket.NCUSocketFactory
NCUSocketFactory expects the external command nc(OpenBSD's netcat), but you don't have to install other third party software.
As for connections to Pageant, win32 APIs must be handled, and JNA has been used in the current implementation for that purpose. Refer to the following class,
If you want to be free from JNA and junixsocket, implement following interfaces without them,