文件名称:sshtools-j2ssh-0[1].0.2-alpha-src

  • 所属分类:
  • 网络编程
  • 资源属性:
  • [Java] [源码]
  • 上传时间:
  • 2008-10-13
  • 文件大小:
  • 691.58kb
  • 下载次数:
  • 0次
  • 提 供 者:
  • y***
  • 相关连接:
  • 下载说明:
  • 别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容均来自于网络,请自行研究使用

Sshtools 是一个纯Java实现的SSH2协议,提供了底层传输,认证和连接协议,高层协议有会话,远程命令执行,文件传输和端口前递-Sshtools is a pure Java Implementation of SSH2 agreement to provide the underlying transmission, authentication and access agreements and high-level agreement conversation, remote command execution, file transfer and the port before delivery
(系统自动生成,下载前可以参看下载内容)

下载文件列表

压缩包 : 7941970sshtools-j2ssh-0[1].0.2-alpha-src.zip 列表
bin/
bin/ssh-keygen.bat
build.properties
build.xml
conf/
conf/hosts.xml
conf/server.xml
conf/sshtools.xml
INSTALL.TXT
lib/
lib/jaxb-rt-1.0-ea.jar
lib/log4j-1.2.6.jar
lib/log4j-license.txt
LICENSE.TXT
src/
src/com/
src/com/sshtools/
src/com/sshtools/examples/
src/com/sshtools/examples/authentication/
src/com/sshtools/examples/authentication/PasswordFileAuthentication.java
src/com/sshtools/examples/echo/
src/com/sshtools/examples/echo/EchoClient.java
src/com/sshtools/examples/echo/EchoMessage.java
src/com/sshtools/examples/echo/EchoSubsystem.java
src/com/sshtools/j2ssh/
src/com/sshtools/j2ssh/authentication/
src/com/sshtools/j2ssh/authentication/AuthenticationProtocol.java
src/com/sshtools/j2ssh/authentication/AuthenticationProtocolException.java
src/com/sshtools/j2ssh/authentication/AuthenticationProtocolState.java
src/com/sshtools/j2ssh/authentication/keys.gif
src/com/sshtools/j2ssh/authentication/PasswordAuthentication.java
src/com/sshtools/j2ssh/authentication/PasswordAuthenticationDialog.java
src/com/sshtools/j2ssh/authentication/SshAuthentication.java
src/com/sshtools/j2ssh/authentication/SshAuthenticationFactory.java
src/com/sshtools/j2ssh/authentication/SshMsgUserAuthBanner.java
src/com/sshtools/j2ssh/authentication/SshMsgUserAuthFailure.java
src/com/sshtools/j2ssh/authentication/SshMsgUserAuthRequest.java
src/com/sshtools/j2ssh/authentication/SshMsgUserAuthSuccess.java
src/com/sshtools/j2ssh/configuration/
src/com/sshtools/j2ssh/configuration/AuthenticationConfiguration.java
src/com/sshtools/j2ssh/configuration/AuthenticationMethod.java
src/com/sshtools/j2ssh/configuration/CipherAlgorithm.java
src/com/sshtools/j2ssh/configuration/CipherConfiguration.java
src/com/sshtools/j2ssh/configuration/CompressionAlgorithm.java
src/com/sshtools/j2ssh/configuration/CompressionConfiguration.java
src/com/sshtools/j2ssh/configuration/ConfigurationLoader.java
src/com/sshtools/j2ssh/configuration/InvalidConnectionFileException.java
src/com/sshtools/j2ssh/configuration/KeyExchangeAlgorithm.java
src/com/sshtools/j2ssh/configuration/KeyExchangeConfiguration.java
src/com/sshtools/j2ssh/configuration/MacAlgorithm.java
src/com/sshtools/j2ssh/configuration/MacConfiguration.java
src/com/sshtools/j2ssh/configuration/PreferredCompression.java
src/com/sshtools/j2ssh/configuration/PreferredEncryption.java
src/com/sshtools/j2ssh/configuration/PreferredMac.java
src/com/sshtools/j2ssh/configuration/PublicKeyAlgorithm.java
src/com/sshtools/j2ssh/configuration/PublicKeyConfiguration.java
src/com/sshtools/j2ssh/configuration/ServerConfiguration.java
src/com/sshtools/j2ssh/configuration/ServerHostKey.java
src/com/sshtools/j2ssh/configuration/ServerHostKeys.java
src/com/sshtools/j2ssh/configuration/SshAPIConfiguration.java
src/com/sshtools/j2ssh/configuration/SshConnection.java
src/com/sshtools/j2ssh/configuration/SshConnectionProperties.java
src/com/sshtools/j2ssh/configuration/Subsystem.java
src/com/sshtools/j2ssh/configuration/Subsystems.java
src/com/sshtools/j2ssh/connection/
src/com/sshtools/j2ssh/connection/Channel.java
src/com/sshtools/j2ssh/connection/ChannelDataWindow.java
src/com/sshtools/j2ssh/connection/ConnectionProtocol.java
src/com/sshtools/j2ssh/connection/SshMsgChannelClose.java
src/com/sshtools/j2ssh/connection/SshMsgChannelData.java
src/com/sshtools/j2ssh/connection/SshMsgChannelEOF.java
src/com/sshtools/j2ssh/connection/SshMsgChannelExtendedData.java
src/com/sshtools/j2ssh/connection/SshMsgChannelFailure.java
src/com/sshtools/j2ssh/connection/SshMsgChannelOpen.java
src/com/sshtools/j2ssh/connection/SshMsgChannelOpenConfirmation.java
src/com/sshtools/j2ssh/connection/SshMsgChannelOpenFailure.java
src/com/sshtools/j2ssh/connection/SshMsgChannelRequest.java
src/com/sshtools/j2ssh/connection/SshMsgChannelSuccess.java
src/com/sshtools/j2ssh/connection/SshMsgChannelWindowAdjust.java
src/com/sshtools/j2ssh/connection/SshMsgGlobalRequest.java
src/com/sshtools/j2ssh/connection/SshMsgRequestFailure.java
src/com/sshtools/j2ssh/connection/SshMsgRequestSuccess.java
src/com/sshtools/j2ssh/connection/WindowSpaceNotAvailableException.java
src/com/sshtools/j2ssh/session/
src/com/sshtools/j2ssh/session/PseudoTerminal.java
src/com/sshtools/j2ssh/session/RedirectedProcessProvider.java
src/com/sshtools/j2ssh/session/SessionChannelClient.java
src/com/sshtools/j2ssh/session/SessionChannelServer.java
src/com/sshtools/j2ssh/session/SessionClient.java
src/com/sshtools/j2ssh/session/SessionDataProvider.java
src/com/sshtools/j2ssh/session/SessionServer.java
src/com/sshtools/j2ssh/SshException.java
src/com/sshtools/j2ssh/subsystem/
src/com/sshtools/j2ssh/subsystem/SubsystemClient.java
src/com/sshtools/j2ssh/subsystem/SubsystemInputStream.java
src/com/sshtools/j2ssh/subsystem/SubsystemMessage.java
src/com/sshtools/j2ssh/subsystem/SubsystemMessageStore.java
src/com/sshtools/j2ssh/subsystem/SubsystemOutputStream.java
src/com/sshtools/j2ssh/subsystem/SubsystemServer.java
src/com/sshtools/j2ssh/transport/
src/com/sshtools/j2ssh/transport/AlgorithmInitializationException.java
src/com/sshtools/j2ssh/transport/AlgorithmNotAgreedException.java
src/com/sshtools/j2ssh/transport/AlgorithmNotSupportedException.java
src/com/sshtools/j2ssh/transport/AlgorithmOperationException.java
src/com/sshtools/j2ssh/transport/AllowHost.java
src/com/sshtools/j2ssh/transport/cipher/
src/com/sshtools/j2ssh/transport/cipher/BlowfishCbc.java
src/com/sshtools/j2ssh/transport/cipher/SshCipher.java
src/com/sshtools/j2ssh/transport/cipher/SshCipherFactory.java
src/com/sshtools/j2ssh/transport/cipher/TripleDesCbc.java
src/com/sshtools/j2ssh/transport/compression/
src/com/sshtools/j2ssh/transport/compression/SshCompression.java
src/com/sshtools/j2ssh/transport/compression/SshCompressionFactory.java
src/com/sshtools/j2ssh/transport/compression/Zlib.java
src/com/sshtools/j2ssh/transport/DenyHost.java
src/com/sshtools/j2ssh/transport/hmac/
src/com/sshtools/j2ssh/transport/hmac/HmacMd5.java
src/com/sshtools/j2ssh/transport/hmac/HmacMd596.java
src/com/sshtools/j2ssh/transport/hmac/HmacSha.java
src/com/sshtools/j2ssh/transport/hmac/HmacSha96.java
src/com/sshtools/j2ssh/transport/hmac/SshHmac.java
src/com/sshtools/j2ssh/transport/hmac/SshHmacFactory.java
src/com/sshtools/j2ssh/transport/HostAuthorizations.java
src/com/sshtools/j2ssh/transport/HostKeyVerification.java
src/com/sshtools/j2ssh/transport/InvalidHostFileException.java
src/com/sshtools/j2ssh/transport/InvalidMessageException.java
src/com/sshtools/j2ssh/transport/InvalidStateException.java
src/com/sshtools/j2ssh/transport/kex/
src/com/sshtools/j2ssh/transport/kex/DhGroup1Sha1.java
src/com/sshtools/j2ssh/transport/kex/KeyExchangeException.java
src/com/sshtools/j2ssh/transport/kex/KeyExchangeState.java
src/com/sshtools/j2ssh/transport/kex/SshKeyExchange.java
src/com/sshtools/j2ssh/transport/kex/SshKeyExchangeFactory.java
src/com/sshtools/j2ssh/transport/kex/SshMsgKexDhInit.java
src/com/sshtools/j2ssh/transport/kex/SshMsgKexDhReply.java
src/com/sshtools/j2ssh/transport/MessageAlreadyRegisteredException.java
src/com/sshtools/j2ssh/transport/MessageNotRegisteredException.java
src/com/sshtools/j2ssh/transport/publickey/
src/com/sshtools/j2ssh/transport/publickey/InvalidHostKeyException.java
src/com/sshtools/j2ssh/transport/publickey/InvalidHostKeySignatureException.java
src/com/sshtools/j2ssh/transport/publickey/SshDss.java
src/com/sshtools/j2ssh/transport/publickey/SshKeyGenerator.java
src/com/sshtools/j2ssh/transport/publickey/SshPublicKey.java
src/com/sshtools/j2ssh/transport/publickey/SshPublicKeyFactory.java
src/com/sshtools/j2ssh/transport/publickey/SshPublicKeyFileFormat.java
src/com/sshtools/j2ssh/transport/Service.java
src/com/sshtools/j2ssh/transport/ServiceFactory.java
src/com/sshtools/j2ssh/transport/ServiceOperationException.java
src/com/sshtools/j2ssh/transport/ServiceState.java
src/com/sshtools/j2ssh/transport/SshMessage.java
src/com/sshtools/j2ssh/transport/SshMessageStore.java
src/com/sshtools/j2ssh/transport/SshMsgDebug.java
src/com/sshtools/j2ssh/transport/SshMsgDisconnect.java
src/com/sshtools/j2ssh/transport/SshMsgIgnore.java
src/com/sshtools/j2ssh/transport/SshMsgKexInit.java
src/com/sshtools/j2ssh/transport/SshMsgNewKeys.java
src/com/sshtools/j2ssh/transport/SshMsgServiceAccept.java
src/com/sshtools/j2ssh/transport/SshMsgServiceRequest.java
src/com/sshtools/j2ssh/transport/SshMsgUnimplemented.java
src/com/sshtools/j2ssh/transport/TransportProtocol.java
src/com/sshtools/j2ssh/transport/TransportProtocolAlgorithmSync.java
src/com/sshtools/j2ssh/transport/TransportProtocolClient.java
src/com/sshtools/j2ssh/transport/TransportProtocolCommon.java
src/com/sshtools/j2ssh/transport/TransportProtocolException.java
src/com/sshtools/j2ssh/transport/TransportProtocolInputStream.java
src/com/sshtools/j2ssh/transport/TransportProtocolOutputStream.java
src/com/sshtools/j2ssh/transport/TransportProtocolServer.java
src/com/sshtools/j2ssh/transport/TransportProtocolState.java
src/com/sshtools/util/
src/com/sshtools/util/ByteArrayReader.java
src/com/sshtools/util/ByteArrayWriter.java
src/com/sshtools/util/Hash.java
src/com/sshtools/util/ImagePanel.java
src/com/sshtools/util/ResourceIcon.java
src/com/sshtools/util/UnsignedInteger.java

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org