libssh2是一个C函数库,用来实现SSH2协议。
主要功能:
KeyExchangeMethods:diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1HostkeyTypes:ssh-rsa,ssh-dssCiphers:aes256-cbc(rijndael-cbc@lysator.liu.se),aes192-cbc,aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,noneCompressionSchemes:zlib,noneMAChashes:hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96,hmac-ripemd160(hmac-ripemd160@openssh.com),noneAuthentication:none,password,public-key,hostbased,keyboard-interactiveChannels:shell,exec(incl.SCPwrapper),direct-tcpip,subsystemGlobalRequests:tcpip-forwardChannelRequests:x11,ptySubsystems:sftp(version3),publickey(version2)Thread-safe:justdon'tsharehandlessimultaneouslyNon-blocking:itcanbeusedbothblockingandnon-blockingYoursockets:theapphandsoverthesocket,callsselect()etc.OpenSSLorgcrypt:buildswitheither
评论