微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

libssh2 C语言 SSH2 函数库

程序名称:libssh2

授权协议: BSD

操作系统: 跨平台

开发语言: C/C++

libssh2 介绍

libssh2是一个C 函数库,用来实现SSH2协议。

主要功能

  • Key Exchange Methods : diffie-hellman-group1-sha1, diffie-hellman-group14-sha1, diffie-hellman-group-exchange-sha1
  • Hostkey Types : ssh-rsa, ssh-dss
  • Ciphers : aes256-cbc ([email protected]), aes192-cbc, aes128-cbc, 3des-cbc, blowfish-cbc, cast128-cbc, arcfour, none
  • Compression Schemes : zlib, none
  • MAC hashes : hmac-sha1, hmac-sha1-96, hmac-md5, hmac-md5-96, hmac-ripemd160 ([email protected]), none
  • Authentication : none, password, public-key, hostbased, keyboard-interactive
  • Channels : shell, exec (incl. SCP wrapper), direct-tcpip, subsystem
  • Global Requests : tcpip-forward
  • Channel Requests : x11, pty
  • Subsystems : sftp(version 3), publickey(version 2)
  • Thread-safe : just don’t share handles simultaneously
  • Non-blocking : it can be used both blocking and non-blocking
  • Your sockets : the app hands over the socket, calls select() etc.
  • OpenSSL or gcrypt : builds with either

libssh2 官网

http://www.libssh2.org/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐