Dail
Dail

Reputation: 4606

how to use SSH in different platforms?

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

Answers (2)

mspoerr
mspoerr

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

André Caron
André Caron

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

Related Questions