tags:

views:

721

answers:

3

Hi. I am coding a simple networking tool in C++ that should be working under unix/linux operating systems. I need to make SSH connection in C++, i.e. C++ SSH client ? And don't forget - Linux, so don't point me to msdn.

Thanks in advance.

A: 

http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

You can download the source for putty here. Should give you a good start.

Travis
yeah thanks i saw the openssh source too, but didn't help me so much - i need someone to point me at the libraries.
gujo
+2  A: 

http://www.libssh2.org/

Javier
+1  A: 

Alternatives to libssh2 are:

Commercial and free licensing:

http://www.netsieben.com/products/ssh/#licensing

Only commercial

http://www.chilkatsoft.com/ssh-sftp-c++.asp

Vinko Vrsalovic