Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sandsmark/qssh
Qt-based library for SSH and SFTP.
https://github.com/sandsmark/qssh
c-plus-plus cpp qt qt-application qt-gui qt-model qt5 sftp sftp-client sftp-download sftp-upload ssh ssh-agent ssh-client ssh-key ssh-tunnel
Last synced: 4 months ago
JSON representation
Qt-based library for SSH and SFTP.
- Host: GitHub
- URL: https://github.com/sandsmark/qssh
- Owner: sandsmark
- License: lgpl-2.1
- Created: 2020-03-24T13:06:28.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T16:40:46.000Z (about 2 years ago)
- Last Synced: 2024-10-12T00:44:43.815Z (4 months ago)
- Topics: c-plus-plus, cpp, qt, qt-application, qt-gui, qt-model, qt5, sftp, sftp-client, sftp-download, sftp-upload, ssh, ssh-agent, ssh-client, ssh-key, ssh-tunnel
- Language: C++
- Size: 1.21 MB
- Stars: 81
- Watchers: 4
- Forks: 25
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE.LGPL
Awesome Lists containing this project
README
About QSsh
==========QSsh provides SSH and SFTP support for Qt applications without depending on
openssh or similar. The aim of this project is to provide an easy way to use
these protocols in any Qt application.This project is based on Qt Creator's previous SSH plugin. All credits to
Qt Creator's team!Unfortunately Qt Creator has decided to start using openssh instead (with some
hacks invoking it etc.), so this is now the most up to date maintained version.Compiling QSsh
--------------Prerequisites:
* [Qt](https://www.qt.io/)
* [Botan](https://botan.randombit.net/)Steps:
```bash
git clone https://github.com/sandsmark/QSsh.git
cd QSsh
mkdir build
cd build
qmake ../qssh.pro
make (or mingw32-make or nmake depending on your platform)
```Examples
--------### Complete applications
* [ssh shell](examples/ssh-shell/), similar to a normal command line `ssh` client.
* [Graphical SFTP browser](tests/manual/ssh/sftpfsmodel/), how to use the SFTP file system model with a QTreeView.
* [Secure Uploader](examples/SecureUploader/), how to upload a file.### Various usage examples
* [Tunneling and forwarding](examples/tunnel/)
* [SFTP](examples/sftp/)
* [Remote process handling](examples/remoteprocess/)### Other
* [Error handling](examples/errorhandling/)
* [Auto tests](tests/auto/ssh/)