mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-24 19:42:11 +00:00
libssh2 and libssh both implement SSH and provide a library API for apps. Both support SSH, SFTP, auth, channels etc. Both are 25K-30K lines of code. [libssh2 vs libssh - A comparison] http://www.libssh2.org/libssh2-vs-libssh.html [Peter: add sha256 hash, fix typo in help text] Signed-off-by: Scott Fan <fancp2007@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
12 lines
483 B
Plaintext
12 lines
483 B
Plaintext
config BR2_PACKAGE_LIBSSH
|
|
bool "libssh"
|
|
# Either OpenSSL or libgcrypt are mandatory
|
|
select BR2_PACKAGE_LIBGCRYPT if !BR2_PACKAGE_OPENSSL
|
|
help
|
|
libssh is a multiplatform C library implementing the SSHv2
|
|
and SSHv1 protocol on client and server side. With libssh,
|
|
you can remotely execute programs, transfer files, use a
|
|
secure and transparent tunnel for your remote applications.
|
|
|
|
http://www.libssh.org/
|