Reputation: 4606
I am using QT libraries in my C++ applications, I would like to know if there is a multiplatform library to use SSH without portability problems.
I need a ssh client to connect to my server and send files.
Upvotes: 0
Views: 366
Reputation: 2710
I use cryptlib:
http://www.cs.auckland.ac.nz/~pgut001/cryptlib/
Is is very easy to use and has a free and commercial license.
Upvotes: 1
Reputation: 45224
OpenSSH is a FOSS implementation of the SSH protocol with built-in client and server programs. Though the OpenSSH project doesn't seem to officially support Windows (and even recommends alternatives), Windows ports exist. SSHWindows seems like a promising effort, although I haven't tried it myself.
Upvotes: 1