net-ssh 1.1.4 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (297) hide show
  1. data/CHANGELOG.rdoc +37 -0
  2. data/Manifest +101 -0
  3. data/README.rdoc +110 -0
  4. data/Rakefile +26 -0
  5. data/{THANKS → THANKS.rdoc} +2 -5
  6. data/lib/net/ssh.rb +189 -57
  7. data/lib/net/ssh/authentication/agent.rb +175 -0
  8. data/lib/net/ssh/authentication/constants.rb +18 -0
  9. data/lib/net/ssh/authentication/key_manager.rb +166 -0
  10. data/lib/net/ssh/authentication/methods/abstract.rb +60 -0
  11. data/lib/net/ssh/authentication/methods/hostbased.rb +71 -0
  12. data/lib/net/ssh/authentication/methods/keyboard_interactive.rb +66 -0
  13. data/lib/net/ssh/authentication/methods/password.rb +39 -0
  14. data/lib/net/ssh/authentication/methods/publickey.rb +92 -0
  15. data/lib/net/ssh/authentication/pageant.rb +176 -0
  16. data/lib/net/ssh/authentication/session.rb +116 -0
  17. data/lib/net/ssh/buffer.rb +339 -0
  18. data/lib/net/ssh/buffered_io.rb +149 -0
  19. data/lib/net/ssh/config.rb +173 -0
  20. data/lib/net/ssh/connection/channel.rb +575 -454
  21. data/lib/net/ssh/connection/constants.rb +31 -45
  22. data/lib/net/ssh/connection/session.rb +569 -0
  23. data/lib/net/ssh/connection/term.rb +176 -88
  24. data/lib/net/ssh/errors.rb +83 -61
  25. data/lib/net/ssh/key_factory.rb +85 -0
  26. data/lib/net/ssh/known_hosts.rb +129 -0
  27. data/lib/net/ssh/loggable.rb +61 -0
  28. data/lib/net/ssh/packet.rb +102 -0
  29. data/lib/net/ssh/prompt.rb +93 -0
  30. data/lib/net/ssh/proxy/errors.rb +8 -28
  31. data/lib/net/ssh/proxy/http.rb +75 -107
  32. data/lib/net/ssh/proxy/socks4.rb +35 -48
  33. data/lib/net/ssh/proxy/socks5.rb +76 -108
  34. data/lib/net/ssh/service/forward.rb +267 -0
  35. data/lib/net/ssh/test.rb +89 -0
  36. data/lib/net/ssh/test/channel.rb +129 -0
  37. data/lib/net/ssh/test/extensions.rb +152 -0
  38. data/lib/net/ssh/test/kex.rb +44 -0
  39. data/lib/net/ssh/test/local_packet.rb +51 -0
  40. data/lib/net/ssh/test/packet.rb +81 -0
  41. data/lib/net/ssh/test/remote_packet.rb +38 -0
  42. data/lib/net/ssh/test/script.rb +157 -0
  43. data/lib/net/ssh/test/socket.rb +59 -0
  44. data/lib/net/ssh/transport/algorithms.rb +384 -0
  45. data/lib/net/ssh/transport/cipher_factory.rb +72 -0
  46. data/lib/net/ssh/transport/constants.rb +22 -58
  47. data/lib/net/ssh/transport/hmac.rb +31 -0
  48. data/lib/net/ssh/transport/hmac/abstract.rb +48 -0
  49. data/lib/net/ssh/transport/hmac/md5.rb +12 -0
  50. data/lib/net/ssh/transport/hmac/md5_96.rb +11 -0
  51. data/lib/net/ssh/transport/hmac/none.rb +15 -0
  52. data/lib/net/ssh/transport/hmac/sha1.rb +13 -0
  53. data/lib/net/ssh/transport/hmac/sha1_96.rb +11 -0
  54. data/lib/net/ssh/transport/identity_cipher.rb +40 -0
  55. data/lib/net/ssh/transport/kex.rb +13 -0
  56. data/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +208 -0
  57. data/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +77 -0
  58. data/lib/net/ssh/{util → transport}/openssl.rb +22 -40
  59. data/lib/net/ssh/transport/packet_stream.rb +230 -0
  60. data/lib/net/ssh/transport/server_version.rb +61 -0
  61. data/lib/net/ssh/transport/session.rb +225 -303
  62. data/lib/net/ssh/transport/state.rb +170 -0
  63. data/lib/net/ssh/verifiers/lenient.rb +30 -0
  64. data/lib/net/ssh/verifiers/null.rb +12 -0
  65. data/lib/net/ssh/verifiers/strict.rb +53 -0
  66. data/lib/net/ssh/version.rb +57 -26
  67. data/net-ssh.gemspec +54 -0
  68. data/setup.rb +1585 -0
  69. data/test/authentication/methods/common.rb +28 -0
  70. data/test/authentication/methods/test_abstract.rb +51 -0
  71. data/test/authentication/methods/test_hostbased.rb +108 -0
  72. data/test/authentication/methods/test_keyboard_interactive.rb +98 -0
  73. data/test/authentication/methods/test_password.rb +50 -0
  74. data/test/authentication/methods/test_publickey.rb +123 -0
  75. data/test/authentication/test_agent.rb +205 -0
  76. data/test/authentication/test_key_manager.rb +100 -0
  77. data/test/authentication/test_session.rb +93 -0
  78. data/test/common.rb +106 -0
  79. data/test/configs/exact_match +8 -0
  80. data/test/configs/wild_cards +14 -0
  81. data/test/connection/test_channel.rb +452 -0
  82. data/test/connection/test_session.rb +483 -0
  83. data/test/test_all.rb +6 -0
  84. data/test/test_buffer.rb +336 -0
  85. data/test/test_buffered_io.rb +63 -0
  86. data/test/test_config.rb +78 -0
  87. data/test/test_key_factory.rb +67 -0
  88. data/test/transport/hmac/test_md5.rb +34 -0
  89. data/test/transport/hmac/test_md5_96.rb +25 -0
  90. data/test/transport/hmac/test_none.rb +34 -0
  91. data/test/transport/hmac/test_sha1.rb +34 -0
  92. data/test/transport/hmac/test_sha1_96.rb +25 -0
  93. data/test/transport/kex/test_diffie_hellman_group1_sha1.rb +146 -0
  94. data/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +92 -0
  95. data/test/transport/test_algorithms.rb +302 -0
  96. data/test/transport/test_cipher_factory.rb +163 -0
  97. data/test/transport/test_hmac.rb +34 -0
  98. data/test/transport/test_identity_cipher.rb +40 -0
  99. data/test/transport/test_packet_stream.rb +433 -0
  100. data/test/transport/test_server_version.rb +55 -0
  101. data/test/transport/test_session.rb +312 -0
  102. data/test/transport/test_state.rb +173 -0
  103. metadata +102 -253
  104. data/ChangeLog +0 -560
  105. data/LICENSE +0 -7
  106. data/NEWS +0 -152
  107. data/README +0 -14
  108. data/bin/rb-keygen +0 -210
  109. data/doc/LICENSE-BSD +0 -27
  110. data/doc/LICENSE-GPL +0 -280
  111. data/doc/LICENSE-RUBY +0 -56
  112. data/doc/manual-html/chapter-1.html +0 -388
  113. data/doc/manual-html/chapter-2.html +0 -552
  114. data/doc/manual-html/chapter-3.html +0 -470
  115. data/doc/manual-html/chapter-4.html +0 -413
  116. data/doc/manual-html/chapter-5.html +0 -525
  117. data/doc/manual-html/chapter-6.html +0 -456
  118. data/doc/manual-html/chapter-7.html +0 -343
  119. data/doc/manual-html/index.html +0 -235
  120. data/doc/manual-html/stylesheets/manual.css +0 -270
  121. data/doc/manual-html/stylesheets/ruby.css +0 -17
  122. data/doc/manual/chapter.erb +0 -38
  123. data/doc/manual/example.erb +0 -18
  124. data/doc/manual/index.erb +0 -29
  125. data/doc/manual/manual.rb +0 -311
  126. data/doc/manual/manual.yml +0 -73
  127. data/doc/manual/page.erb +0 -87
  128. data/doc/manual/parts/0000.txt +0 -5
  129. data/doc/manual/parts/0001.txt +0 -3
  130. data/doc/manual/parts/0002.txt +0 -40
  131. data/doc/manual/parts/0003.txt +0 -6
  132. data/doc/manual/parts/0004.txt +0 -7
  133. data/doc/manual/parts/0005.txt +0 -1
  134. data/doc/manual/parts/0006.txt +0 -49
  135. data/doc/manual/parts/0007.txt +0 -67
  136. data/doc/manual/parts/0008.txt +0 -43
  137. data/doc/manual/parts/0009.txt +0 -14
  138. data/doc/manual/parts/0010.txt +0 -7
  139. data/doc/manual/parts/0011.txt +0 -14
  140. data/doc/manual/parts/0012.txt +0 -3
  141. data/doc/manual/parts/0013.txt +0 -20
  142. data/doc/manual/parts/0014.txt +0 -32
  143. data/doc/manual/parts/0015.txt +0 -14
  144. data/doc/manual/parts/0016.txt +0 -28
  145. data/doc/manual/parts/0017.txt +0 -50
  146. data/doc/manual/parts/0018.txt +0 -35
  147. data/doc/manual/parts/0019.txt +0 -7
  148. data/doc/manual/parts/0020.txt +0 -72
  149. data/doc/manual/parts/0021.txt +0 -50
  150. data/doc/manual/parts/0022.txt +0 -42
  151. data/doc/manual/parts/0023.txt +0 -51
  152. data/doc/manual/parts/0024.txt +0 -18
  153. data/doc/manual/parts/0025.txt +0 -18
  154. data/doc/manual/parts/0026.txt +0 -15
  155. data/doc/manual/parts/0027.txt +0 -37
  156. data/doc/manual/parts/0028.txt +0 -16
  157. data/doc/manual/parts/0029.txt +0 -1
  158. data/doc/manual/parts/0030.txt +0 -52
  159. data/doc/manual/parts/0031.txt +0 -25
  160. data/doc/manual/stylesheets/manual.css +0 -270
  161. data/doc/manual/stylesheets/ruby.css +0 -17
  162. data/doc/manual/tutorial.erb +0 -30
  163. data/examples/auth-forward.rb +0 -41
  164. data/examples/channel-demo.rb +0 -81
  165. data/examples/port-forward.rb +0 -51
  166. data/examples/process-demo.rb +0 -91
  167. data/examples/remote-net-port-forward.rb +0 -45
  168. data/examples/remote-port-forward.rb +0 -80
  169. data/examples/shell-demo.rb +0 -46
  170. data/examples/ssh-client.rb +0 -67
  171. data/examples/sync-shell-demo.rb +0 -69
  172. data/examples/tail-demo.rb +0 -49
  173. data/lib/net/ssh/connection/driver.rb +0 -446
  174. data/lib/net/ssh/connection/services.rb +0 -72
  175. data/lib/net/ssh/host-key-verifier.rb +0 -52
  176. data/lib/net/ssh/known-hosts.rb +0 -96
  177. data/lib/net/ssh/lenient-host-key-verifier.rb +0 -25
  178. data/lib/net/ssh/null-host-key-verifier.rb +0 -14
  179. data/lib/net/ssh/service/agentforward/driver.rb +0 -78
  180. data/lib/net/ssh/service/agentforward/services.rb +0 -41
  181. data/lib/net/ssh/service/forward/driver.rb +0 -319
  182. data/lib/net/ssh/service/forward/local-network-handler.rb +0 -71
  183. data/lib/net/ssh/service/forward/remote-network-handler.rb +0 -83
  184. data/lib/net/ssh/service/forward/services.rb +0 -76
  185. data/lib/net/ssh/service/process/driver.rb +0 -153
  186. data/lib/net/ssh/service/process/open.rb +0 -193
  187. data/lib/net/ssh/service/process/popen3.rb +0 -178
  188. data/lib/net/ssh/service/process/services.rb +0 -66
  189. data/lib/net/ssh/service/services.rb +0 -60
  190. data/lib/net/ssh/service/shell/driver.rb +0 -86
  191. data/lib/net/ssh/service/shell/services.rb +0 -54
  192. data/lib/net/ssh/service/shell/shell.rb +0 -222
  193. data/lib/net/ssh/service/shell/sync.rb +0 -114
  194. data/lib/net/ssh/session.rb +0 -305
  195. data/lib/net/ssh/transport/algorithm-negotiator.rb +0 -275
  196. data/lib/net/ssh/transport/compress/compressor.rb +0 -53
  197. data/lib/net/ssh/transport/compress/decompressor.rb +0 -53
  198. data/lib/net/ssh/transport/compress/none-compressor.rb +0 -39
  199. data/lib/net/ssh/transport/compress/none-decompressor.rb +0 -39
  200. data/lib/net/ssh/transport/compress/services.rb +0 -68
  201. data/lib/net/ssh/transport/compress/zlib-compressor.rb +0 -60
  202. data/lib/net/ssh/transport/compress/zlib-decompressor.rb +0 -52
  203. data/lib/net/ssh/transport/errors.rb +0 -47
  204. data/lib/net/ssh/transport/identity-cipher.rb +0 -61
  205. data/lib/net/ssh/transport/kex/dh-gex.rb +0 -106
  206. data/lib/net/ssh/transport/kex/dh.rb +0 -249
  207. data/lib/net/ssh/transport/kex/services.rb +0 -62
  208. data/lib/net/ssh/transport/ossl/buffer-factory.rb +0 -52
  209. data/lib/net/ssh/transport/ossl/buffer.rb +0 -87
  210. data/lib/net/ssh/transport/ossl/cipher-factory.rb +0 -98
  211. data/lib/net/ssh/transport/ossl/digest-factory.rb +0 -51
  212. data/lib/net/ssh/transport/ossl/hmac-factory.rb +0 -71
  213. data/lib/net/ssh/transport/ossl/hmac/hmac.rb +0 -62
  214. data/lib/net/ssh/transport/ossl/hmac/md5-96.rb +0 -44
  215. data/lib/net/ssh/transport/ossl/hmac/md5.rb +0 -46
  216. data/lib/net/ssh/transport/ossl/hmac/none.rb +0 -46
  217. data/lib/net/ssh/transport/ossl/hmac/services.rb +0 -68
  218. data/lib/net/ssh/transport/ossl/hmac/sha1-96.rb +0 -44
  219. data/lib/net/ssh/transport/ossl/hmac/sha1.rb +0 -45
  220. data/lib/net/ssh/transport/ossl/key-factory.rb +0 -116
  221. data/lib/net/ssh/transport/ossl/services.rb +0 -149
  222. data/lib/net/ssh/transport/packet-stream.rb +0 -236
  223. data/lib/net/ssh/transport/services.rb +0 -146
  224. data/lib/net/ssh/transport/version-negotiator.rb +0 -73
  225. data/lib/net/ssh/userauth/agent.rb +0 -222
  226. data/lib/net/ssh/userauth/constants.rb +0 -35
  227. data/lib/net/ssh/userauth/driver.rb +0 -183
  228. data/lib/net/ssh/userauth/methods/hostbased.rb +0 -119
  229. data/lib/net/ssh/userauth/methods/keyboard-interactive.rb +0 -104
  230. data/lib/net/ssh/userauth/methods/password.rb +0 -70
  231. data/lib/net/ssh/userauth/methods/publickey.rb +0 -137
  232. data/lib/net/ssh/userauth/methods/services.rb +0 -90
  233. data/lib/net/ssh/userauth/pageant.rb +0 -197
  234. data/lib/net/ssh/userauth/services.rb +0 -141
  235. data/lib/net/ssh/userauth/userkeys.rb +0 -258
  236. data/lib/net/ssh/util/buffer.rb +0 -274
  237. data/lib/net/ssh/util/prompter.rb +0 -73
  238. data/test/ALL-TESTS.rb +0 -18
  239. data/test/connection/tc_channel.rb +0 -136
  240. data/test/connection/tc_driver.rb +0 -287
  241. data/test/connection/tc_integration.rb +0 -87
  242. data/test/proxy/tc_http.rb +0 -209
  243. data/test/proxy/tc_socks4.rb +0 -148
  244. data/test/proxy/tc_socks5.rb +0 -214
  245. data/test/service/agentforward/tc_driver.rb +0 -138
  246. data/test/service/forward/tc_driver.rb +0 -289
  247. data/test/service/forward/tc_local_network_handler.rb +0 -123
  248. data/test/service/forward/tc_remote_network_handler.rb +0 -111
  249. data/test/service/process/tc_driver.rb +0 -79
  250. data/test/service/process/tc_integration.rb +0 -119
  251. data/test/service/process/tc_open.rb +0 -179
  252. data/test/service/process/tc_popen3.rb +0 -164
  253. data/test/tc_integration.rb +0 -80
  254. data/test/transport/compress/tc_none_compress.rb +0 -41
  255. data/test/transport/compress/tc_none_decompress.rb +0 -45
  256. data/test/transport/compress/tc_zlib_compress.rb +0 -61
  257. data/test/transport/compress/tc_zlib_decompress.rb +0 -48
  258. data/test/transport/kex/tc_dh.rb +0 -312
  259. data/test/transport/kex/tc_dh_gex.rb +0 -71
  260. data/test/transport/ossl/fixtures/dsa-encrypted +0 -15
  261. data/test/transport/ossl/fixtures/dsa-encrypted-bad +0 -15
  262. data/test/transport/ossl/fixtures/dsa-unencrypted +0 -12
  263. data/test/transport/ossl/fixtures/dsa-unencrypted-bad +0 -12
  264. data/test/transport/ossl/fixtures/dsa-unencrypted.pub +0 -1
  265. data/test/transport/ossl/fixtures/not-a-private-key +0 -4
  266. data/test/transport/ossl/fixtures/not-supported +0 -2
  267. data/test/transport/ossl/fixtures/rsa-encrypted +0 -18
  268. data/test/transport/ossl/fixtures/rsa-encrypted-bad +0 -18
  269. data/test/transport/ossl/fixtures/rsa-unencrypted +0 -15
  270. data/test/transport/ossl/fixtures/rsa-unencrypted-bad +0 -15
  271. data/test/transport/ossl/fixtures/rsa-unencrypted.pub +0 -1
  272. data/test/transport/ossl/hmac/tc_hmac.rb +0 -58
  273. data/test/transport/ossl/hmac/tc_md5.rb +0 -50
  274. data/test/transport/ossl/hmac/tc_md5_96.rb +0 -50
  275. data/test/transport/ossl/hmac/tc_none.rb +0 -50
  276. data/test/transport/ossl/hmac/tc_sha1.rb +0 -50
  277. data/test/transport/ossl/hmac/tc_sha1_96.rb +0 -50
  278. data/test/transport/ossl/tc_buffer.rb +0 -97
  279. data/test/transport/ossl/tc_buffer_factory.rb +0 -67
  280. data/test/transport/ossl/tc_cipher_factory.rb +0 -84
  281. data/test/transport/ossl/tc_digest_factory.rb +0 -39
  282. data/test/transport/ossl/tc_hmac_factory.rb +0 -72
  283. data/test/transport/ossl/tc_key_factory.rb +0 -199
  284. data/test/transport/tc_algorithm_negotiator.rb +0 -170
  285. data/test/transport/tc_identity_cipher.rb +0 -52
  286. data/test/transport/tc_integration.rb +0 -115
  287. data/test/transport/tc_packet_stream.rb +0 -184
  288. data/test/transport/tc_session.rb +0 -296
  289. data/test/transport/tc_version_negotiator.rb +0 -86
  290. data/test/userauth/methods/tc_hostbased.rb +0 -136
  291. data/test/userauth/methods/tc_password.rb +0 -89
  292. data/test/userauth/methods/tc_publickey.rb +0 -167
  293. data/test/userauth/tc_agent.rb +0 -223
  294. data/test/userauth/tc_driver.rb +0 -190
  295. data/test/userauth/tc_integration.rb +0 -97
  296. data/test/userauth/tc_userkeys.rb +0 -265
  297. data/test/util/tc_buffer.rb +0 -217
metadata CHANGED
@@ -1,282 +1,131 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: net-ssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck
8
- autorequire: net/ssh
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
12
  date: 2008-05-01 00:00:00 -06:00
13
13
  default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: needle
17
- version_requirement:
18
- version_requirements: !ruby/object:Gem::Requirement
19
- requirements:
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 1.2.0
23
- version:
24
- description:
25
- email: jamis@37signals.com
26
- executables:
27
- - rb-keygen
14
+ dependencies: []
15
+
16
+ description: a pure-Ruby implementation of the SSH2 client protocol
17
+ email: jamis@jamisbuck.org
18
+ executables: []
19
+
28
20
  extensions: []
29
21
 
30
22
  extra_rdoc_files: []
31
23
 
32
24
  files:
33
- - bin/rb-keygen
34
- - doc/LICENSE-BSD
35
- - doc/LICENSE-GPL
36
- - doc/LICENSE-RUBY
37
- - doc/manual
38
- - doc/manual/chapter.erb
39
- - doc/manual/example.erb
40
- - doc/manual/index.erb
41
- - doc/manual/manual.rb
42
- - doc/manual/manual.yml
43
- - doc/manual/page.erb
44
- - doc/manual/parts
45
- - doc/manual/parts/0000.txt
46
- - doc/manual/parts/0001.txt
47
- - doc/manual/parts/0002.txt
48
- - doc/manual/parts/0003.txt
49
- - doc/manual/parts/0004.txt
50
- - doc/manual/parts/0005.txt
51
- - doc/manual/parts/0006.txt
52
- - doc/manual/parts/0007.txt
53
- - doc/manual/parts/0008.txt
54
- - doc/manual/parts/0009.txt
55
- - doc/manual/parts/0010.txt
56
- - doc/manual/parts/0011.txt
57
- - doc/manual/parts/0012.txt
58
- - doc/manual/parts/0013.txt
59
- - doc/manual/parts/0014.txt
60
- - doc/manual/parts/0015.txt
61
- - doc/manual/parts/0016.txt
62
- - doc/manual/parts/0017.txt
63
- - doc/manual/parts/0018.txt
64
- - doc/manual/parts/0019.txt
65
- - doc/manual/parts/0020.txt
66
- - doc/manual/parts/0021.txt
67
- - doc/manual/parts/0022.txt
68
- - doc/manual/parts/0023.txt
69
- - doc/manual/parts/0024.txt
70
- - doc/manual/parts/0025.txt
71
- - doc/manual/parts/0026.txt
72
- - doc/manual/parts/0027.txt
73
- - doc/manual/parts/0028.txt
74
- - doc/manual/parts/0029.txt
75
- - doc/manual/parts/0030.txt
76
- - doc/manual/parts/0031.txt
77
- - doc/manual/stylesheets
78
- - doc/manual/stylesheets/manual.css
79
- - doc/manual/stylesheets/ruby.css
80
- - doc/manual/tutorial.erb
81
- - doc/manual-html
82
- - doc/manual-html/chapter-1.html
83
- - doc/manual-html/chapter-2.html
84
- - doc/manual-html/chapter-3.html
85
- - doc/manual-html/chapter-4.html
86
- - doc/manual-html/chapter-5.html
87
- - doc/manual-html/chapter-6.html
88
- - doc/manual-html/chapter-7.html
89
- - doc/manual-html/index.html
90
- - doc/manual-html/stylesheets
91
- - doc/manual-html/stylesheets/manual.css
92
- - doc/manual-html/stylesheets/ruby.css
93
- - lib/net
94
- - lib/net/ssh
95
- - lib/net/ssh/connection
25
+ - CHANGELOG.rdoc
26
+ - lib/net/ssh/authentication/agent.rb
27
+ - lib/net/ssh/authentication/constants.rb
28
+ - lib/net/ssh/authentication/key_manager.rb
29
+ - lib/net/ssh/authentication/methods/abstract.rb
30
+ - lib/net/ssh/authentication/methods/hostbased.rb
31
+ - lib/net/ssh/authentication/methods/keyboard_interactive.rb
32
+ - lib/net/ssh/authentication/methods/password.rb
33
+ - lib/net/ssh/authentication/methods/publickey.rb
34
+ - lib/net/ssh/authentication/pageant.rb
35
+ - lib/net/ssh/authentication/session.rb
36
+ - lib/net/ssh/buffer.rb
37
+ - lib/net/ssh/buffered_io.rb
38
+ - lib/net/ssh/config.rb
96
39
  - lib/net/ssh/connection/channel.rb
97
40
  - lib/net/ssh/connection/constants.rb
98
- - lib/net/ssh/connection/driver.rb
99
- - lib/net/ssh/connection/services.rb
41
+ - lib/net/ssh/connection/session.rb
100
42
  - lib/net/ssh/connection/term.rb
101
43
  - lib/net/ssh/errors.rb
102
- - lib/net/ssh/host-key-verifier.rb
103
- - lib/net/ssh/known-hosts.rb
104
- - lib/net/ssh/lenient-host-key-verifier.rb
105
- - lib/net/ssh/null-host-key-verifier.rb
106
- - lib/net/ssh/proxy
44
+ - lib/net/ssh/key_factory.rb
45
+ - lib/net/ssh/known_hosts.rb
46
+ - lib/net/ssh/loggable.rb
47
+ - lib/net/ssh/packet.rb
48
+ - lib/net/ssh/prompt.rb
107
49
  - lib/net/ssh/proxy/errors.rb
108
50
  - lib/net/ssh/proxy/http.rb
109
51
  - lib/net/ssh/proxy/socks4.rb
110
52
  - lib/net/ssh/proxy/socks5.rb
111
- - lib/net/ssh/service
112
- - lib/net/ssh/service/agentforward
113
- - lib/net/ssh/service/agentforward/driver.rb
114
- - lib/net/ssh/service/agentforward/services.rb
115
- - lib/net/ssh/service/forward
116
- - lib/net/ssh/service/forward/driver.rb
117
- - lib/net/ssh/service/forward/local-network-handler.rb
118
- - lib/net/ssh/service/forward/remote-network-handler.rb
119
- - lib/net/ssh/service/forward/services.rb
120
- - lib/net/ssh/service/process
121
- - lib/net/ssh/service/process/driver.rb
122
- - lib/net/ssh/service/process/open.rb
123
- - lib/net/ssh/service/process/popen3.rb
124
- - lib/net/ssh/service/process/services.rb
125
- - lib/net/ssh/service/services.rb
126
- - lib/net/ssh/service/shell
127
- - lib/net/ssh/service/shell/driver.rb
128
- - lib/net/ssh/service/shell/services.rb
129
- - lib/net/ssh/service/shell/shell.rb
130
- - lib/net/ssh/service/shell/sync.rb
131
- - lib/net/ssh/session.rb
132
- - lib/net/ssh/transport
133
- - lib/net/ssh/transport/algorithm-negotiator.rb
134
- - lib/net/ssh/transport/compress
135
- - lib/net/ssh/transport/compress/compressor.rb
136
- - lib/net/ssh/transport/compress/decompressor.rb
137
- - lib/net/ssh/transport/compress/none-compressor.rb
138
- - lib/net/ssh/transport/compress/none-decompressor.rb
139
- - lib/net/ssh/transport/compress/services.rb
140
- - lib/net/ssh/transport/compress/zlib-compressor.rb
141
- - lib/net/ssh/transport/compress/zlib-decompressor.rb
53
+ - lib/net/ssh/service/forward.rb
54
+ - lib/net/ssh/test/channel.rb
55
+ - lib/net/ssh/test/extensions.rb
56
+ - lib/net/ssh/test/kex.rb
57
+ - lib/net/ssh/test/local_packet.rb
58
+ - lib/net/ssh/test/packet.rb
59
+ - lib/net/ssh/test/remote_packet.rb
60
+ - lib/net/ssh/test/script.rb
61
+ - lib/net/ssh/test/socket.rb
62
+ - lib/net/ssh/test.rb
63
+ - lib/net/ssh/transport/algorithms.rb
64
+ - lib/net/ssh/transport/cipher_factory.rb
142
65
  - lib/net/ssh/transport/constants.rb
143
- - lib/net/ssh/transport/errors.rb
144
- - lib/net/ssh/transport/identity-cipher.rb
145
- - lib/net/ssh/transport/kex
146
- - lib/net/ssh/transport/kex/dh-gex.rb
147
- - lib/net/ssh/transport/kex/dh.rb
148
- - lib/net/ssh/transport/kex/services.rb
149
- - lib/net/ssh/transport/ossl
150
- - lib/net/ssh/transport/ossl/buffer-factory.rb
151
- - lib/net/ssh/transport/ossl/buffer.rb
152
- - lib/net/ssh/transport/ossl/cipher-factory.rb
153
- - lib/net/ssh/transport/ossl/digest-factory.rb
154
- - lib/net/ssh/transport/ossl/hmac
155
- - lib/net/ssh/transport/ossl/hmac/hmac.rb
156
- - lib/net/ssh/transport/ossl/hmac/md5-96.rb
157
- - lib/net/ssh/transport/ossl/hmac/md5.rb
158
- - lib/net/ssh/transport/ossl/hmac/none.rb
159
- - lib/net/ssh/transport/ossl/hmac/services.rb
160
- - lib/net/ssh/transport/ossl/hmac/sha1-96.rb
161
- - lib/net/ssh/transport/ossl/hmac/sha1.rb
162
- - lib/net/ssh/transport/ossl/hmac-factory.rb
163
- - lib/net/ssh/transport/ossl/key-factory.rb
164
- - lib/net/ssh/transport/ossl/services.rb
165
- - lib/net/ssh/transport/packet-stream.rb
166
- - lib/net/ssh/transport/services.rb
66
+ - lib/net/ssh/transport/hmac/abstract.rb
67
+ - lib/net/ssh/transport/hmac/md5.rb
68
+ - lib/net/ssh/transport/hmac/md5_96.rb
69
+ - lib/net/ssh/transport/hmac/none.rb
70
+ - lib/net/ssh/transport/hmac/sha1.rb
71
+ - lib/net/ssh/transport/hmac/sha1_96.rb
72
+ - lib/net/ssh/transport/hmac.rb
73
+ - lib/net/ssh/transport/identity_cipher.rb
74
+ - lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb
75
+ - lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb
76
+ - lib/net/ssh/transport/kex.rb
77
+ - lib/net/ssh/transport/openssl.rb
78
+ - lib/net/ssh/transport/packet_stream.rb
79
+ - lib/net/ssh/transport/server_version.rb
167
80
  - lib/net/ssh/transport/session.rb
168
- - lib/net/ssh/transport/version-negotiator.rb
169
- - lib/net/ssh/userauth
170
- - lib/net/ssh/userauth/agent.rb
171
- - lib/net/ssh/userauth/constants.rb
172
- - lib/net/ssh/userauth/driver.rb
173
- - lib/net/ssh/userauth/methods
174
- - lib/net/ssh/userauth/methods/hostbased.rb
175
- - lib/net/ssh/userauth/methods/keyboard-interactive.rb
176
- - lib/net/ssh/userauth/methods/password.rb
177
- - lib/net/ssh/userauth/methods/publickey.rb
178
- - lib/net/ssh/userauth/methods/services.rb
179
- - lib/net/ssh/userauth/pageant.rb
180
- - lib/net/ssh/userauth/services.rb
181
- - lib/net/ssh/userauth/userkeys.rb
182
- - lib/net/ssh/util
183
- - lib/net/ssh/util/buffer.rb
184
- - lib/net/ssh/util/openssl.rb
185
- - lib/net/ssh/util/prompter.rb
81
+ - lib/net/ssh/transport/state.rb
82
+ - lib/net/ssh/verifiers/lenient.rb
83
+ - lib/net/ssh/verifiers/null.rb
84
+ - lib/net/ssh/verifiers/strict.rb
186
85
  - lib/net/ssh/version.rb
187
86
  - lib/net/ssh.rb
188
- - examples/auth-forward.rb
189
- - examples/channel-demo.rb
190
- - examples/port-forward.rb
191
- - examples/process-demo.rb
192
- - examples/remote-net-port-forward.rb
193
- - examples/remote-port-forward.rb
194
- - examples/shell-demo.rb
195
- - examples/ssh-client.rb
196
- - examples/sync-shell-demo.rb
197
- - examples/tail-demo.rb
198
- - test/ALL-TESTS.rb
199
- - test/connection
200
- - test/connection/tc_channel.rb
201
- - test/connection/tc_driver.rb
202
- - test/connection/tc_integration.rb
203
- - test/proxy
204
- - test/proxy/tc_http.rb
205
- - test/proxy/tc_socks4.rb
206
- - test/proxy/tc_socks5.rb
207
- - test/service
208
- - test/service/agentforward
209
- - test/service/agentforward/tc_driver.rb
210
- - test/service/forward
211
- - test/service/forward/tc_driver.rb
212
- - test/service/forward/tc_local_network_handler.rb
213
- - test/service/forward/tc_remote_network_handler.rb
214
- - test/service/process
215
- - test/service/process/tc_driver.rb
216
- - test/service/process/tc_integration.rb
217
- - test/service/process/tc_open.rb
218
- - test/service/process/tc_popen3.rb
219
- - test/tc_integration.rb
220
- - test/transport
221
- - test/transport/compress
222
- - test/transport/compress/tc_none_compress.rb
223
- - test/transport/compress/tc_none_decompress.rb
224
- - test/transport/compress/tc_zlib_compress.rb
225
- - test/transport/compress/tc_zlib_decompress.rb
226
- - test/transport/kex
227
- - test/transport/kex/tc_dh.rb
228
- - test/transport/kex/tc_dh_gex.rb
229
- - test/transport/ossl
230
- - test/transport/ossl/fixtures
231
- - test/transport/ossl/fixtures/dsa-encrypted
232
- - test/transport/ossl/fixtures/dsa-encrypted-bad
233
- - test/transport/ossl/fixtures/dsa-unencrypted
234
- - test/transport/ossl/fixtures/dsa-unencrypted-bad
235
- - test/transport/ossl/fixtures/dsa-unencrypted.pub
236
- - test/transport/ossl/fixtures/not-a-private-key
237
- - test/transport/ossl/fixtures/not-supported
238
- - test/transport/ossl/fixtures/rsa-encrypted
239
- - test/transport/ossl/fixtures/rsa-encrypted-bad
240
- - test/transport/ossl/fixtures/rsa-unencrypted
241
- - test/transport/ossl/fixtures/rsa-unencrypted-bad
242
- - test/transport/ossl/fixtures/rsa-unencrypted.pub
243
- - test/transport/ossl/hmac
244
- - test/transport/ossl/hmac/tc_hmac.rb
245
- - test/transport/ossl/hmac/tc_md5.rb
246
- - test/transport/ossl/hmac/tc_md5_96.rb
247
- - test/transport/ossl/hmac/tc_none.rb
248
- - test/transport/ossl/hmac/tc_sha1.rb
249
- - test/transport/ossl/hmac/tc_sha1_96.rb
250
- - test/transport/ossl/tc_buffer.rb
251
- - test/transport/ossl/tc_buffer_factory.rb
252
- - test/transport/ossl/tc_cipher_factory.rb
253
- - test/transport/ossl/tc_digest_factory.rb
254
- - test/transport/ossl/tc_hmac_factory.rb
255
- - test/transport/ossl/tc_key_factory.rb
256
- - test/transport/tc_algorithm_negotiator.rb
257
- - test/transport/tc_identity_cipher.rb
258
- - test/transport/tc_integration.rb
259
- - test/transport/tc_packet_stream.rb
260
- - test/transport/tc_session.rb
261
- - test/transport/tc_version_negotiator.rb
262
- - test/userauth
263
- - test/userauth/methods
264
- - test/userauth/methods/tc_hostbased.rb
265
- - test/userauth/methods/tc_password.rb
266
- - test/userauth/methods/tc_publickey.rb
267
- - test/userauth/tc_agent.rb
268
- - test/userauth/tc_driver.rb
269
- - test/userauth/tc_integration.rb
270
- - test/userauth/tc_userkeys.rb
271
- - test/util
272
- - test/util/tc_buffer.rb
273
- - README
274
- - LICENSE
275
- - NEWS
276
- - THANKS
277
- - ChangeLog
87
+ - Rakefile
88
+ - README.rdoc
89
+ - setup.rb
90
+ - test/authentication/methods/common.rb
91
+ - test/authentication/methods/test_abstract.rb
92
+ - test/authentication/methods/test_hostbased.rb
93
+ - test/authentication/methods/test_keyboard_interactive.rb
94
+ - test/authentication/methods/test_password.rb
95
+ - test/authentication/methods/test_publickey.rb
96
+ - test/authentication/test_agent.rb
97
+ - test/authentication/test_key_manager.rb
98
+ - test/authentication/test_session.rb
99
+ - test/common.rb
100
+ - test/configs/exact_match
101
+ - test/configs/wild_cards
102
+ - test/connection/test_channel.rb
103
+ - test/connection/test_session.rb
104
+ - test/test_all.rb
105
+ - test/test_buffer.rb
106
+ - test/test_buffered_io.rb
107
+ - test/test_config.rb
108
+ - test/test_key_factory.rb
109
+ - test/transport/hmac/test_md5.rb
110
+ - test/transport/hmac/test_md5_96.rb
111
+ - test/transport/hmac/test_none.rb
112
+ - test/transport/hmac/test_sha1.rb
113
+ - test/transport/hmac/test_sha1_96.rb
114
+ - test/transport/kex/test_diffie_hellman_group1_sha1.rb
115
+ - test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb
116
+ - test/transport/test_algorithms.rb
117
+ - test/transport/test_cipher_factory.rb
118
+ - test/transport/test_hmac.rb
119
+ - test/transport/test_identity_cipher.rb
120
+ - test/transport/test_packet_stream.rb
121
+ - test/transport/test_server_version.rb
122
+ - test/transport/test_session.rb
123
+ - test/transport/test_state.rb
124
+ - THANKS.rdoc
125
+ - Manifest
126
+ - net-ssh.gemspec
278
127
  has_rdoc: true
279
- homepage: http://net-ssh.rubyforge.org
128
+ homepage: http://net-ssh.rubyforge.org/ssh
280
129
  post_install_message:
281
130
  rdoc_options: []
282
131
 
@@ -296,10 +145,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
296
145
  version:
297
146
  requirements: []
298
147
 
299
- rubyforge_project:
148
+ rubyforge_project: net-ssh
300
149
  rubygems_version: 1.1.1
301
150
  signing_key:
302
151
  specification_version: 2
303
- summary: Net::SSH is a pure-Ruby implementation of the SSH2 client protocol.
152
+ summary: a pure-Ruby implementation of the SSH2 client protocol
304
153
  test_files:
305
- - test/ALL-TESTS.rb
154
+ - test/test_all.rb
data/ChangeLog DELETED
@@ -1,560 +0,0 @@
1
- 2008-02-26 07:54 jamis
2
-
3
- * Fix invalid use of socket.send (closes #17857, thanks to
4
- Zbigniew Zemła)
5
-
6
- 2007-07-11 09:52 jamis
7
-
8
- * nevermind
9
-
10
- 2007-07-11 08:57 jamis
11
-
12
- * Make sure packets are split in such a way as to preserve a
13
- minimum packet size, to prevent hmacs being split and
14
- causing grief
15
-
16
- 2007-06-18 12:07 jamis
17
-
18
- * version bump
19
-
20
- 2007-06-18 11:45 jamis
21
-
22
- * Make sure we try and create the directory if it doesn't
23
- exist
24
-
25
- 2007-06-18 11:35 jamis
26
-
27
- * make sure hosts are written to the known_hosts file in the
28
- correct format
29
-
30
- 2007-06-18 09:17 jamis
31
-
32
- * Fixed bug #6156 (ruby -w warnings)
33
-
34
- 2007-06-18 09:03 jamis
35
-
36
- * Fixed bug #11532 (Hang after MSG_CHANNEL_OPEN_FAILURE)
37
-
38
- 2007-06-18 08:39 jamis
39
-
40
- * Fixed bug #10818 (Exception in split_data_for_packet)
41
-
42
- 2007-06-18 08:11 jamis
43
-
44
- * Fixed bug 6667 (wrong SOCKS 5 auth version)
45
-
46
- 2007-06-18 08:08 jamis
47
-
48
- * update the NEWS file
49
-
50
- 2007-06-18 08:05 jamis
51
-
52
- * allow the remaining data to be empty (as it will be,
53
- apparently, with some aes ciphers)
54
-
55
- 2007-06-18 07:57 jamis
56
-
57
- * Fixed typo that broke :very paranoid setting
58
-
59
- 2007-06-18 07:52 jamis
60
-
61
- * use the first known key for a particular host as the
62
- preferred key type when negotiating the algorithm, to avoid
63
- host key verification problems
64
-
65
- 2007-05-10 10:30 jamis
66
-
67
- * turns out the padding didn't help. pulling it
68
-
69
- 2007-05-10 09:47 jamis
70
-
71
- * add some padding so the gem file can be installed on windows
72
-
73
- 2007-05-09 22:05 jamis
74
-
75
- * Version bump
76
-
77
- 2007-05-09 22:03 jamis
78
-
79
- * Fixed broken mkdir in key verifier
80
-
81
- 2007-05-09 21:54 jamis
82
-
83
- * Fixed "address family for hostname not supported" errors on
84
- windows
85
-
86
- 2007-04-30 23:28 jamis
87
-
88
- * update datestamp on the NEWS file
89
-
90
- 2007-04-30 22:03 jamis
91
-
92
- * version bump
93
-
94
- 2007-04-30 22:02 jamis
95
-
96
- * Updated docs about the :paranoid key
97
-
98
- 2007-04-29 22:00 jamis
99
-
100
- * need to return the right values for this to work
101
-
102
- 2007-04-29 21:57 jamis
103
-
104
- * Add a "lenient-host-key-verifier" which is used by default,
105
- and which tries to detect whether a connection is being
106
- tunnelled and if so will not try to verify the host key.
107
-
108
- 2007-04-11 00:21 jamis
109
-
110
- * tweak the host key verifier, so that instead of prompting,
111
- it raises an exception when a key does not match a
112
- previously cached key for host
113
-
114
- 2007-04-07 15:42 jamis
115
-
116
- * treat rb-keygen as an executable
117
-
118
- 2007-04-07 15:20 jamis
119
-
120
- * version bump
121
-
122
- 2007-04-07 15:19 jamis
123
-
124
- * update manual to include :paranoid setting
125
-
126
- 2007-04-07 15:13 jamis
127
-
128
- * Add rb-keygen
129
-
130
- 2007-04-07 15:09 jamis
131
-
132
- * Host key verification, enabled by default
133
-
134
- 2007-04-05 10:37 jamis
135
-
136
- * ssh agent forwarding
137
-
138
- 2006-09-09 17:56 jamis
139
-
140
- * Fix rdoc options
141
-
142
- 2006-09-09 17:54 jamis
143
-
144
- * update NEWS
145
-
146
- 2006-09-09 17:50 jamis
147
-
148
- * Update version
149
-
150
- 2006-09-07 12:25 jamis
151
-
152
- * Add support in gemspec for "beta" gems, using the revision
153
- number appended to the version
154
-
155
- 2006-09-07 12:03 jamis
156
-
157
- * Use read instead of sysread
158
-
159
- 2006-09-07 12:03 jamis
160
-
161
- * Use printf instead of echo -n for better compatibility
162
-
163
- 2006-09-07 12:03 jamis
164
-
165
- * fix bad syntax
166
-
167
- 2006-09-07 11:19 jamis
168
-
169
- * Don't allow the username to be nil
170
-
171
- 2006-09-07 10:54 jamis
172
-
173
- * Add a #connection accessor to the session. Add initial
174
- support for server-originated global requests.
175
-
176
- 2006-04-14 21:10 jamis
177
-
178
- * Fix a bug caused by monkeypatching in Rails
179
-
180
- 2006-02-18 20:38 jamis
181
-
182
- * Set release date for 1.0.8
183
-
184
- 2006-02-18 20:34 jamis
185
-
186
- * Move connect for forwarded connections outside of thread so
187
- errors can be caught. Version bump to 1.0.8.
188
-
189
- 2006-01-27 08:38 jamis
190
-
191
- * Set release date for 1.0.7
192
-
193
- 2006-01-24 21:32 jamis
194
-
195
- * Fix intermittent corrupt mac bug, caused by threaded apps
196
- potentially interrupting the recv operation while reading
197
- the hmac from the socket
198
-
199
- 2006-01-23 07:41 jamis
200
-
201
- * Remove some unused links from the manual
202
-
203
- 2006-01-20 12:36 jamis
204
-
205
- * Remove documentation suggesting that ruby-password will be
206
- used if present (it won't)
207
-
208
- 2006-01-19 23:18 jamis
209
-
210
- * Update contact address in THANKS file
211
-
212
- 2006-01-19 23:07 jamis
213
-
214
- * Update release date
215
-
216
- 2006-01-19 23:03 jamis
217
-
218
- * Do not print the banner message by default on authorization
219
- (rarely useful for automated processes anyway)
220
-
221
- 2006-01-19 22:33 jamis
222
-
223
- * Send NEWKEYS message first, for compability with
224
- wodSSHServer (which won't send NEWKEYS until it recieves
225
- NEWKEYS from the client). Version bump to 1.0.6.
226
-
227
- 2006-01-02 09:51 jamis
228
-
229
- * Update NEWS file
230
-
231
- 2005-12-31 23:18 jamis
232
-
233
- * Add connection.ping! and session.ping!. Version bump.
234
-
235
- 2005-12-26 19:05 jamis
236
-
237
- * Add some disambiguating parentheses
238
-
239
- 2005-12-24 12:59 jamis
240
-
241
- * Fix problems with rake's cd/chdir under Ruby 1.8.4
242
-
243
- 2005-12-24 12:50 jamis
244
-
245
- * Update rakefile
246
-
247
- 2005-12-24 12:50 jamis
248
-
249
- * Update NEWS file
250
-
251
- 2005-12-24 12:47 jamis
252
-
253
- * Fix broken tests under 1.8.4. Change references to obsolete
254
- contact email address. Tiny version bump.
255
-
256
- 2005-11-09 10:05 jamis
257
-
258
- * Version bump
259
-
260
- 2005-11-09 10:03 jamis
261
-
262
- * Don't blow up on windows if the pageant process cannot be
263
- found
264
-
265
- 2005-07-26 23:12 jamis
266
-
267
- * Updated NEWS file. Fixed README to not indicate that
268
- Net::SSH is beta (it's mature, now, and has been for awhile)
269
-
270
- 2005-07-26 23:05 jamis
271
-
272
- * Updated recent changes in manual
273
-
274
- 2005-07-26 23:04 jamis
275
-
276
- * Corrected documentation for the channel on_request callback
277
-
278
- 2005-07-26 23:02 jamis
279
-
280
- * Version bump
281
-
282
- 2005-07-26 23:01 jamis
283
-
284
- * Fix channel on_request callback signature. Better thread-
285
- safety in the connection driver. Typos.
286
-
287
- 2005-06-17 15:46 jamis
288
-
289
- * Fixed address of svn repo
290
-
291
- 2005-06-17 15:16 jamis
292
-
293
- * Copy/paste error
294
-
295
- 2005-06-17 15:04 jamis
296
-
297
- * Restore task for publishing the user manual
298
-
299
- 2005-06-17 14:45 jamis
300
-
301
- * Updated the manual from the defunct Hieraki-based
302
- documentation
303
-
304
- 2005-06-17 09:41 jamis
305
-
306
- * Version bump
307
-
308
- 2005-05-28 20:40 jamis
309
-
310
- * Guard against recursive/simultaneous calls when processing
311
- data requests
312
-
313
- 2005-04-03 11:17 jamis
314
-
315
- * Added a :timeout option on the transport session
316
-
317
- 2005-02-17 13:40 jamis
318
-
319
- * Fix suggested by Peter Verhage that allows the Putty Agent
320
- to be used (currently was not working on windows).
321
-
322
- 2005-02-06 16:42 jamis
323
-
324
- * Removed pubdoc dependency on pubman in Rakefile, due to
325
- pubman having been removed.
326
-
327
- 2005-02-06 16:39 jamis
328
-
329
- * Added Daniel Berger to the THANKS file for his help with
330
- getting the unit tests to pass under Windows.
331
-
332
- 2005-02-06 16:38 jamis
333
-
334
- * Updated the NEWS file for the 1.0 release.
335
-
336
- 2005-02-06 16:34 jamis
337
-
338
- * ChangeLog generation is automated again. The new svn log is
339
- reformatted and prepended to the original CVS log
340
- (ChangeLog.cvs).
341
-
342
- 2005-02-06 15:57 jamis
343
-
344
- * Manual builder was still wrapped in the Needle module (from
345
- which it was copied). Version bumped to 1.0.0.
346
-
347
- 2005-02-01 12:20 jamis
348
-
349
- * Allow a password to be specified programatically for
350
- keyboard-interactive. This allows keyboard-interactive to be
351
- used in many cases just like 'password'.
352
-
353
- 2005-01-25 11:44 jamis
354
-
355
- * All tests (except the integration tests) pass on Windows
356
- now. Perhaps even some of the random "corrupted hmac" errors
357
- I've seen occur on occassion will be fixed now...
358
-
359
- 2005-01-25 07:54 jamis
360
-
361
- * Removed extraneous whitespace between list items.
362
-
363
- 2005-01-14 15:28 jamis
364
-
365
- * Channels now respect their own local window and maximum
366
- packet sizes, and report reasonable values to the server.
367
- This fixes a bug that caused problems when large quantities
368
- of data were requested of the server and certain server-
369
- maximums were being exceeded.
370
-
371
- 2005-01-12 10:11 jamis
372
-
373
- * hostbased bug has been (tentatively) squashed
374
-
375
- 2005-01-12 10:10 jamis
376
-
377
- * Use Socket#close instead of Socket#shutdown. Also, hostname
378
- look up is more intelligent and should never raise an
379
- exception--it will instead log an error if the hostname
380
- absolutely cannot be looked up.
381
-
382
- 2005-01-12 10:07 jamis
383
-
384
- * The authentication process is now aware of the
385
- authentication methods that the server has indicated can
386
- possibly succeed. Methods that cannot possibly succeed will
387
- no longer even be attempted.
388
-
389
- 2005-01-12 09:35 jamis
390
-
391
- * Use Socket#close instead of Socket#shutdown in the proxy
392
- unit tests. This allows the tests to pass when run in
393
- Windows.
394
-
395
- 2005-01-11 16:21 jamis
396
-
397
- * Rakefile was removing ChangeLog. Added bug with hostbased to
398
- TODO.
399
-
400
- 2005-01-11 14:38 jamis
401
-
402
- * Added a "tag" task for easier tagging off the current HEAD.
403
-
404
- 2005-01-11 14:31 jamis
405
-
406
- * Rakefile no longer tries to build the changelog.
407
-
408
- 2005-01-11 14:12 jamis
409
-
410
- * Added the ChangeLog and updated the NEWS file.
411
-
412
- 2005-01-11 14:01 jamis
413
-
414
- * Bumped version, updated NEWS, and added more feature
415
- demonstrations to the sync-shell-demo.rb script.
416
-
417
- 2005-01-11 13:46 jamis
418
-
419
- * Added syntax highlighted code blocks, and shell
420
- documentation. Also tweaked stylesheets.
421
-
422
- 2005-01-11 09:07 jamis
423
-
424
- * Simplified the shell service. The 'stdout' and 'stderr',
425
- etc. parameters to the service were not working anyway, and
426
- may be better implemented as a wrapper around the shell
427
- service, anyway.
428
-
429
- 2005-01-10 16:39 jamis
430
-
431
- * Changed copyright line and author email address.
432
-
433
- 2005-01-10 16:30 jamis
434
-
435
- * Added SyncShell subservice, reimplemented ssh-client demo,
436
- and added demos for both Shell and SyncShell.
437
-
438
- 2005-01-10 12:50 jamis
439
-
440
- * Added first pass at the shell service, and updated the ssh-
441
- client to use it. Also fixed some breakage in the popen3
442
- test cases.
443
-
444
- 2005-01-09 14:14 jamis
445
-
446
- * Keyboard-interactive is correctly implemented now.
447
-
448
- 2005-01-09 12:17 jamis
449
-
450
- * Getting better at dealing with interactive processes. Added
451
- an ssh-client demo.
452
-
453
- 2005-01-07 13:12 minam
454
-
455
- * Name of the cvs2cl executable changed. Added more TODO's, to keep
456
- me busy with.
457
-
458
- 2005-01-04 20:49 minam
459
-
460
- * Added "host" and "options" attributes to Session (thanks to
461
- Daniel Hobe).
462
-
463
- 2005-01-04 13:17 minam
464
-
465
- * Raise an error if an attempt is made to load a file as a public
466
- key, which is not a public key.
467
-
468
- 2005-01-04 12:27 minam
469
-
470
- * If an agent wasn't running, the authentication would fail with an
471
- unhelpful error. This fix should allow authentication to proceed,
472
- even in the absense of an ssh-agent.
473
-
474
- 2004-12-01 22:12 minam
475
-
476
- * Updated NEWS file.
477
-
478
- 2004-12-01 21:26 minam
479
-
480
- * Pageant support! Fixed documentation. Bumped version to 0.6.0.
481
- Added support for external services. The USERNAME environment
482
- variable is used if USER is not set. Moved the README to the
483
- project root (for consistency with other project files). Fixed
484
- some documentation typos.
485
-
486
- 2004-11-23 13:42 minam
487
-
488
- * Forgot to include the 'examples' subdirectory in the packages.
489
-
490
- 2004-11-23 13:21 minam
491
-
492
- * Cut-and-paste errors. :(
493
-
494
- 2004-11-23 13:17 minam
495
-
496
- * Added date of this release to NEWS file.
497
-
498
- 2004-11-23 13:16 minam
499
-
500
- * Minor rakefile tweakage.
501
-
502
- 2004-11-23 13:14 minam
503
-
504
- * Added Needle as a dependency in gemspec.
505
-
506
- 2004-11-23 13:12 minam
507
-
508
- * Updated TODO (prompter impl was added)
509
-
510
- 2004-11-23 13:11 minam
511
-
512
- * Added a prompter implementation, instead of depending on
513
- ruby-password.
514
-
515
- 2004-11-23 12:43 minam
516
-
517
- * :verbose and :log options were not being removed from the options
518
- before being passed to the transport layer, which was causing the
519
- transport layer to fail.
520
-
521
- 2004-11-23 12:42 minam
522
-
523
- * Oops. :verbosity should have been :verbose.
524
-
525
- 2004-11-23 12:40 minam
526
-
527
- * Documented the :log and :verbosity options.
528
-
529
- 2004-11-23 12:37 minam
530
-
531
- * Added examples. Made it easier to customize logging in
532
- Net::SSH::Session.
533
-
534
- 2004-11-23 11:45 minam
535
-
536
- * Changed FAQ link.
537
-
538
- 2004-11-23 11:29 minam
539
-
540
- * Updated manual for new version.
541
-
542
- 2004-11-23 11:28 minam
543
-
544
- * Updated TODO list. Fixed a documentation typo in channel.rb.
545
-
546
- 2004-11-22 14:37 minam
547
-
548
- * Added :coverage goal, to run rcov on the unit tests.
549
-
550
- 2004-11-22 14:05 minam
551
-
552
- * *sigh* These shouldn't have been checked it. :(
553
-
554
- 2004-11-22 13:52 minam
555
-
556
- * Initial revision
557
-
558
- 2004-11-22 13:52 minam
559
-
560
- * Refactored the whole blame thing