Is there any quality SSH2 library for ios?
For java, there is a library called jsch (http://www.jcraft.com/jsch/) that does an excellent job with the ssh2 wrapper. One bit of functionality that interests me the most is the reverse port method:
session.setPortForwardingR(remote_port, host, local_port);
I found one objective-c lib from http://www.chilkatsoft.com/ssh-sftp-objc.asp , but it is not free and does not seem to be of a high quality level. Should I just try porting the version of C opensh?
Also, if porting openssh is the best option, is there any open source project that currently does this?
source
share