net-ssh 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -84,8 +84,8 @@ module Net
84
84
 
85
85
  # looks for the first element in list1 that is also in list2
86
86
  def first_matching_element( list1, list2 )
87
- list1 = list1.split( /,/ ) if list1.respond_to? :split
88
- list2 = list2.split( /,/ ) if list2.respond_to? :split
87
+ list1 = list1.split( /,/ ) if String === list1
88
+ list2 = list2.split( /,/ ) if String === list2
89
89
 
90
90
  list1.each do |item|
91
91
  return item if list2.include? item
@@ -20,7 +20,7 @@ module Net
20
20
 
21
21
  MAJOR = 1
22
22
  MINOR = 0
23
- TINY = 8
23
+ TINY = 9
24
24
 
25
25
  STRING = [ MAJOR, MINOR, TINY ].join( "." )
26
26
 
metadata CHANGED
@@ -3,11 +3,11 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: net-ssh
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.8
7
- date: 2006-02-18 00:00:00 -07:00
6
+ version: 1.0.9
7
+ date: 2006-04-14 00:00:00 -06:00
8
8
  summary: Net::SSH is a pure-Ruby implementation of the SSH2 client protocol.
9
9
  require_paths:
10
- - lib
10
+ - lib
11
11
  email: jamis@37signals.com
12
12
  homepage: http://net-ssh.rubyforge.org
13
13
  rubyforge_project:
@@ -18,261 +18,252 @@ bindir: bin
18
18
  has_rdoc: true
19
19
  required_ruby_version: !ruby/object:Gem::Version::Requirement
20
20
  requirements:
21
- -
22
- - ">"
23
- - !ruby/object:Gem::Version
24
- version: 0.0.0
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
25
24
  version:
26
25
  platform: ruby
27
26
  signing_key:
28
27
  cert_chain:
29
28
  authors:
30
- - Jamis Buck
29
+ - Jamis Buck
31
30
  files:
32
- - doc/LICENSE-BSD
33
- - doc/LICENSE-GPL
34
- - doc/LICENSE-RUBY
35
- - doc/manual
36
- - doc/manual-html
37
- - doc/manual/chapter.erb
38
- - doc/manual/example.erb
39
- - doc/manual/index.erb
40
- - doc/manual/manual.rb
41
- - doc/manual/manual.yml
42
- - doc/manual/page.erb
43
- - doc/manual/parts
44
- - doc/manual/stylesheets
45
- - doc/manual/tutorial.erb
46
- - doc/manual/parts/0000.txt
47
- - doc/manual/parts/0001.txt
48
- - doc/manual/parts/0002.txt
49
- - doc/manual/parts/0003.txt
50
- - doc/manual/parts/0004.txt
51
- - doc/manual/parts/0005.txt
52
- - doc/manual/parts/0006.txt
53
- - doc/manual/parts/0007.txt
54
- - doc/manual/parts/0008.txt
55
- - doc/manual/parts/0009.txt
56
- - doc/manual/parts/0010.txt
57
- - doc/manual/parts/0011.txt
58
- - doc/manual/parts/0012.txt
59
- - doc/manual/parts/0013.txt
60
- - doc/manual/parts/0014.txt
61
- - doc/manual/parts/0015.txt
62
- - doc/manual/parts/0016.txt
63
- - doc/manual/parts/0017.txt
64
- - doc/manual/parts/0018.txt
65
- - doc/manual/parts/0019.txt
66
- - doc/manual/parts/0020.txt
67
- - doc/manual/parts/0021.txt
68
- - doc/manual/parts/0022.txt
69
- - doc/manual/parts/0023.txt
70
- - doc/manual/parts/0024.txt
71
- - doc/manual/parts/0025.txt
72
- - doc/manual/parts/0026.txt
73
- - doc/manual/parts/0027.txt
74
- - doc/manual/parts/0028.txt
75
- - doc/manual/parts/0029.txt
76
- - doc/manual/parts/0030.txt
77
- - doc/manual/parts/0031.txt
78
- - doc/manual/stylesheets/manual.css
79
- - doc/manual/stylesheets/ruby.css
80
- - doc/manual-html/chapter-1.html
81
- - doc/manual-html/chapter-2.html
82
- - doc/manual-html/chapter-3.html
83
- - doc/manual-html/chapter-4.html
84
- - doc/manual-html/chapter-5.html
85
- - doc/manual-html/chapter-6.html
86
- - doc/manual-html/chapter-7.html
87
- - doc/manual-html/index.html
88
- - doc/manual-html/stylesheets
89
- - doc/manual-html/stylesheets/manual.css
90
- - doc/manual-html/stylesheets/ruby.css
91
- - lib/net
92
- - lib/net/ssh
93
- - lib/net/ssh.rb
94
- - lib/net/ssh/connection
95
- - lib/net/ssh/errors.rb
96
- - lib/net/ssh/proxy
97
- - lib/net/ssh/service
98
- - lib/net/ssh/session.rb
99
- - lib/net/ssh/transport
100
- - lib/net/ssh/userauth
101
- - lib/net/ssh/util
102
- - lib/net/ssh/version.rb
103
- - lib/net/ssh/connection/channel.rb
104
- - lib/net/ssh/connection/constants.rb
105
- - lib/net/ssh/connection/driver.rb
106
- - lib/net/ssh/connection/services.rb
107
- - lib/net/ssh/connection/term.rb
108
- - lib/net/ssh/proxy/errors.rb
109
- - lib/net/ssh/proxy/http.rb
110
- - lib/net/ssh/proxy/socks4.rb
111
- - lib/net/ssh/proxy/socks5.rb
112
- - lib/net/ssh/service/forward
113
- - lib/net/ssh/service/process
114
- - lib/net/ssh/service/services.rb
115
- - lib/net/ssh/service/shell
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/driver.rb
121
- - lib/net/ssh/service/process/open.rb
122
- - lib/net/ssh/service/process/popen3.rb
123
- - lib/net/ssh/service/process/services.rb
124
- - lib/net/ssh/service/shell/driver.rb
125
- - lib/net/ssh/service/shell/services.rb
126
- - lib/net/ssh/service/shell/shell.rb
127
- - lib/net/ssh/service/shell/sync.rb
128
- - lib/net/ssh/transport/algorithm-negotiator.rb
129
- - lib/net/ssh/transport/compress
130
- - lib/net/ssh/transport/constants.rb
131
- - lib/net/ssh/transport/errors.rb
132
- - lib/net/ssh/transport/identity-cipher.rb
133
- - lib/net/ssh/transport/kex
134
- - lib/net/ssh/transport/ossl
135
- - lib/net/ssh/transport/packet-stream.rb
136
- - lib/net/ssh/transport/services.rb
137
- - lib/net/ssh/transport/session.rb
138
- - lib/net/ssh/transport/version-negotiator.rb
139
- - lib/net/ssh/transport/compress/compressor.rb
140
- - lib/net/ssh/transport/compress/decompressor.rb
141
- - lib/net/ssh/transport/compress/none-compressor.rb
142
- - lib/net/ssh/transport/compress/none-decompressor.rb
143
- - lib/net/ssh/transport/compress/services.rb
144
- - lib/net/ssh/transport/compress/zlib-compressor.rb
145
- - lib/net/ssh/transport/compress/zlib-decompressor.rb
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/buffer-factory.rb
150
- - lib/net/ssh/transport/ossl/buffer.rb
151
- - lib/net/ssh/transport/ossl/cipher-factory.rb
152
- - lib/net/ssh/transport/ossl/digest-factory.rb
153
- - lib/net/ssh/transport/ossl/hmac
154
- - lib/net/ssh/transport/ossl/hmac-factory.rb
155
- - lib/net/ssh/transport/ossl/key-factory.rb
156
- - lib/net/ssh/transport/ossl/services.rb
157
- - lib/net/ssh/transport/ossl/hmac/hmac.rb
158
- - lib/net/ssh/transport/ossl/hmac/md5-96.rb
159
- - lib/net/ssh/transport/ossl/hmac/md5.rb
160
- - lib/net/ssh/transport/ossl/hmac/none.rb
161
- - lib/net/ssh/transport/ossl/hmac/services.rb
162
- - lib/net/ssh/transport/ossl/hmac/sha1-96.rb
163
- - lib/net/ssh/transport/ossl/hmac/sha1.rb
164
- - lib/net/ssh/userauth/agent.rb
165
- - lib/net/ssh/userauth/constants.rb
166
- - lib/net/ssh/userauth/driver.rb
167
- - lib/net/ssh/userauth/methods
168
- - lib/net/ssh/userauth/pageant.rb
169
- - lib/net/ssh/userauth/services.rb
170
- - lib/net/ssh/userauth/userkeys.rb
171
- - lib/net/ssh/userauth/methods/hostbased.rb
172
- - lib/net/ssh/userauth/methods/keyboard-interactive.rb
173
- - lib/net/ssh/userauth/methods/password.rb
174
- - lib/net/ssh/userauth/methods/publickey.rb
175
- - lib/net/ssh/userauth/methods/services.rb
176
- - lib/net/ssh/util/buffer.rb
177
- - lib/net/ssh/util/openssl.rb
178
- - lib/net/ssh/util/prompter.rb
179
- - examples/channel-demo.rb
180
- - examples/port-forward.rb
181
- - examples/process-demo.rb
182
- - examples/remote-net-port-forward.rb
183
- - examples/remote-port-forward.rb
184
- - examples/shell-demo.rb
185
- - examples/ssh-client.rb
186
- - examples/sync-shell-demo.rb
187
- - examples/tail-demo.rb
188
- - test/ALL-TESTS.rb
189
- - test/connection
190
- - test/proxy
191
- - test/service
192
- - test/tc_integration.rb
193
- - test/transport
194
- - test/userauth
195
- - test/util
196
- - test/connection/tc_channel.rb
197
- - test/connection/tc_driver.rb
198
- - test/connection/tc_integration.rb
199
- - test/proxy/tc_http.rb
200
- - test/proxy/tc_socks4.rb
201
- - test/proxy/tc_socks5.rb
202
- - test/service/forward
203
- - test/service/process
204
- - test/service/forward/tc_driver.rb
205
- - test/service/forward/tc_local_network_handler.rb
206
- - test/service/forward/tc_remote_network_handler.rb
207
- - test/service/process/tc_driver.rb
208
- - test/service/process/tc_integration.rb
209
- - test/service/process/tc_open.rb
210
- - test/service/process/tc_popen3.rb
211
- - test/transport/compress
212
- - test/transport/kex
213
- - test/transport/ossl
214
- - test/transport/tc_algorithm_negotiator.rb
215
- - test/transport/tc_identity_cipher.rb
216
- - test/transport/tc_integration.rb
217
- - test/transport/tc_packet_stream.rb
218
- - test/transport/tc_session.rb
219
- - test/transport/tc_version_negotiator.rb
220
- - test/transport/compress/tc_none_compress.rb
221
- - test/transport/compress/tc_none_decompress.rb
222
- - test/transport/compress/tc_zlib_compress.rb
223
- - test/transport/compress/tc_zlib_decompress.rb
224
- - test/transport/kex/tc_dh.rb
225
- - test/transport/kex/tc_dh_gex.rb
226
- - test/transport/ossl/fixtures
227
- - test/transport/ossl/hmac
228
- - test/transport/ossl/tc_buffer.rb
229
- - test/transport/ossl/tc_buffer_factory.rb
230
- - test/transport/ossl/tc_cipher_factory.rb
231
- - test/transport/ossl/tc_digest_factory.rb
232
- - test/transport/ossl/tc_hmac_factory.rb
233
- - test/transport/ossl/tc_key_factory.rb
234
- - test/transport/ossl/fixtures/dsa-encrypted
235
- - test/transport/ossl/fixtures/dsa-encrypted-bad
236
- - test/transport/ossl/fixtures/dsa-unencrypted
237
- - test/transport/ossl/fixtures/dsa-unencrypted-bad
238
- - test/transport/ossl/fixtures/dsa-unencrypted.pub
239
- - test/transport/ossl/fixtures/not-a-private-key
240
- - test/transport/ossl/fixtures/not-supported
241
- - test/transport/ossl/fixtures/rsa-encrypted
242
- - test/transport/ossl/fixtures/rsa-encrypted-bad
243
- - test/transport/ossl/fixtures/rsa-unencrypted
244
- - test/transport/ossl/fixtures/rsa-unencrypted-bad
245
- - test/transport/ossl/fixtures/rsa-unencrypted.pub
246
- - test/transport/ossl/hmac/tc_hmac.rb
247
- - test/transport/ossl/hmac/tc_md5.rb
248
- - test/transport/ossl/hmac/tc_md5_96.rb
249
- - test/transport/ossl/hmac/tc_none.rb
250
- - test/transport/ossl/hmac/tc_sha1.rb
251
- - test/transport/ossl/hmac/tc_sha1_96.rb
252
- - test/userauth/methods
253
- - test/userauth/tc_agent.rb
254
- - test/userauth/tc_driver.rb
255
- - test/userauth/tc_integration.rb
256
- - test/userauth/tc_userkeys.rb
257
- - test/userauth/methods/tc_hostbased.rb
258
- - test/userauth/methods/tc_password.rb
259
- - test/userauth/methods/tc_publickey.rb
260
- - test/util/tc_buffer.rb
31
+ - doc/LICENSE-BSD
32
+ - doc/LICENSE-GPL
33
+ - doc/LICENSE-RUBY
34
+ - doc/manual
35
+ - doc/manual/chapter.erb
36
+ - doc/manual/example.erb
37
+ - doc/manual/index.erb
38
+ - doc/manual/manual.rb
39
+ - doc/manual/manual.yml
40
+ - doc/manual/page.erb
41
+ - doc/manual/parts
42
+ - doc/manual/stylesheets
43
+ - doc/manual/tutorial.erb
44
+ - doc/manual/parts/0000.txt
45
+ - doc/manual/parts/0001.txt
46
+ - doc/manual/parts/0002.txt
47
+ - doc/manual/parts/0003.txt
48
+ - doc/manual/parts/0004.txt
49
+ - doc/manual/parts/0005.txt
50
+ - doc/manual/parts/0006.txt
51
+ - doc/manual/parts/0007.txt
52
+ - doc/manual/parts/0008.txt
53
+ - doc/manual/parts/0009.txt
54
+ - doc/manual/parts/0010.txt
55
+ - doc/manual/parts/0011.txt
56
+ - doc/manual/parts/0012.txt
57
+ - doc/manual/parts/0013.txt
58
+ - doc/manual/parts/0014.txt
59
+ - doc/manual/parts/0015.txt
60
+ - doc/manual/parts/0016.txt
61
+ - doc/manual/parts/0017.txt
62
+ - doc/manual/parts/0018.txt
63
+ - doc/manual/parts/0019.txt
64
+ - doc/manual/parts/0020.txt
65
+ - doc/manual/parts/0021.txt
66
+ - doc/manual/parts/0022.txt
67
+ - doc/manual/parts/0023.txt
68
+ - doc/manual/parts/0024.txt
69
+ - doc/manual/parts/0025.txt
70
+ - doc/manual/parts/0026.txt
71
+ - doc/manual/parts/0027.txt
72
+ - doc/manual/parts/0028.txt
73
+ - doc/manual/parts/0029.txt
74
+ - doc/manual/parts/0030.txt
75
+ - doc/manual/parts/0031.txt
76
+ - doc/manual/stylesheets/manual.css
77
+ - doc/manual/stylesheets/ruby.css
78
+ - lib/net
79
+ - lib/net/ssh
80
+ - lib/net/ssh.rb
81
+ - lib/net/ssh/connection
82
+ - lib/net/ssh/errors.rb
83
+ - lib/net/ssh/proxy
84
+ - lib/net/ssh/service
85
+ - lib/net/ssh/session.rb
86
+ - lib/net/ssh/transport
87
+ - lib/net/ssh/userauth
88
+ - lib/net/ssh/util
89
+ - lib/net/ssh/version.rb
90
+ - lib/net/ssh/connection/channel.rb
91
+ - lib/net/ssh/connection/constants.rb
92
+ - lib/net/ssh/connection/driver.rb
93
+ - lib/net/ssh/connection/services.rb
94
+ - lib/net/ssh/connection/term.rb
95
+ - lib/net/ssh/proxy/errors.rb
96
+ - lib/net/ssh/proxy/http.rb
97
+ - lib/net/ssh/proxy/socks4.rb
98
+ - lib/net/ssh/proxy/socks5.rb
99
+ - lib/net/ssh/service/forward
100
+ - lib/net/ssh/service/process
101
+ - lib/net/ssh/service/services.rb
102
+ - lib/net/ssh/service/shell
103
+ - lib/net/ssh/service/forward/driver.rb
104
+ - lib/net/ssh/service/forward/local-network-handler.rb
105
+ - lib/net/ssh/service/forward/remote-network-handler.rb
106
+ - lib/net/ssh/service/forward/services.rb
107
+ - lib/net/ssh/service/process/driver.rb
108
+ - lib/net/ssh/service/process/open.rb
109
+ - lib/net/ssh/service/process/popen3.rb
110
+ - lib/net/ssh/service/process/services.rb
111
+ - lib/net/ssh/service/shell/driver.rb
112
+ - lib/net/ssh/service/shell/services.rb
113
+ - lib/net/ssh/service/shell/shell.rb
114
+ - lib/net/ssh/service/shell/sync.rb
115
+ - lib/net/ssh/transport/algorithm-negotiator.rb
116
+ - lib/net/ssh/transport/compress
117
+ - lib/net/ssh/transport/constants.rb
118
+ - lib/net/ssh/transport/errors.rb
119
+ - lib/net/ssh/transport/identity-cipher.rb
120
+ - lib/net/ssh/transport/kex
121
+ - lib/net/ssh/transport/ossl
122
+ - lib/net/ssh/transport/packet-stream.rb
123
+ - lib/net/ssh/transport/services.rb
124
+ - lib/net/ssh/transport/session.rb
125
+ - lib/net/ssh/transport/version-negotiator.rb
126
+ - lib/net/ssh/transport/compress/compressor.rb
127
+ - lib/net/ssh/transport/compress/decompressor.rb
128
+ - lib/net/ssh/transport/compress/none-compressor.rb
129
+ - lib/net/ssh/transport/compress/none-decompressor.rb
130
+ - lib/net/ssh/transport/compress/services.rb
131
+ - lib/net/ssh/transport/compress/zlib-compressor.rb
132
+ - lib/net/ssh/transport/compress/zlib-decompressor.rb
133
+ - lib/net/ssh/transport/kex/dh-gex.rb
134
+ - lib/net/ssh/transport/kex/dh.rb
135
+ - lib/net/ssh/transport/kex/services.rb
136
+ - lib/net/ssh/transport/ossl/buffer-factory.rb
137
+ - lib/net/ssh/transport/ossl/buffer.rb
138
+ - lib/net/ssh/transport/ossl/cipher-factory.rb
139
+ - lib/net/ssh/transport/ossl/digest-factory.rb
140
+ - lib/net/ssh/transport/ossl/hmac
141
+ - lib/net/ssh/transport/ossl/hmac-factory.rb
142
+ - lib/net/ssh/transport/ossl/key-factory.rb
143
+ - lib/net/ssh/transport/ossl/services.rb
144
+ - lib/net/ssh/transport/ossl/hmac/hmac.rb
145
+ - lib/net/ssh/transport/ossl/hmac/md5-96.rb
146
+ - lib/net/ssh/transport/ossl/hmac/md5.rb
147
+ - lib/net/ssh/transport/ossl/hmac/none.rb
148
+ - lib/net/ssh/transport/ossl/hmac/services.rb
149
+ - lib/net/ssh/transport/ossl/hmac/sha1-96.rb
150
+ - lib/net/ssh/transport/ossl/hmac/sha1.rb
151
+ - lib/net/ssh/userauth/agent.rb
152
+ - lib/net/ssh/userauth/constants.rb
153
+ - lib/net/ssh/userauth/driver.rb
154
+ - lib/net/ssh/userauth/methods
155
+ - lib/net/ssh/userauth/pageant.rb
156
+ - lib/net/ssh/userauth/services.rb
157
+ - lib/net/ssh/userauth/userkeys.rb
158
+ - lib/net/ssh/userauth/methods/hostbased.rb
159
+ - lib/net/ssh/userauth/methods/keyboard-interactive.rb
160
+ - lib/net/ssh/userauth/methods/password.rb
161
+ - lib/net/ssh/userauth/methods/publickey.rb
162
+ - lib/net/ssh/userauth/methods/services.rb
163
+ - lib/net/ssh/util/buffer.rb
164
+ - lib/net/ssh/util/openssl.rb
165
+ - lib/net/ssh/util/prompter.rb
166
+ - examples/channel-demo.rb
167
+ - examples/port-forward.rb
168
+ - examples/process-demo.rb
169
+ - examples/remote-net-port-forward.rb
170
+ - examples/remote-port-forward.rb
171
+ - examples/shell-demo.rb
172
+ - examples/ssh-client.rb
173
+ - examples/sync-shell-demo.rb
174
+ - examples/tail-demo.rb
175
+ - test/ALL-TESTS.rb
176
+ - test/connection
177
+ - test/proxy
178
+ - test/service
179
+ - test/tc_integration.rb
180
+ - test/transport
181
+ - test/userauth
182
+ - test/util
183
+ - test/connection/tc_channel.rb
184
+ - test/connection/tc_driver.rb
185
+ - test/connection/tc_integration.rb
186
+ - test/proxy/tc_http.rb
187
+ - test/proxy/tc_socks4.rb
188
+ - test/proxy/tc_socks5.rb
189
+ - test/service/forward
190
+ - test/service/process
191
+ - test/service/forward/tc_driver.rb
192
+ - test/service/forward/tc_local_network_handler.rb
193
+ - test/service/forward/tc_remote_network_handler.rb
194
+ - test/service/process/tc_driver.rb
195
+ - test/service/process/tc_integration.rb
196
+ - test/service/process/tc_open.rb
197
+ - test/service/process/tc_popen3.rb
198
+ - test/transport/compress
199
+ - test/transport/kex
200
+ - test/transport/ossl
201
+ - test/transport/tc_algorithm_negotiator.rb
202
+ - test/transport/tc_identity_cipher.rb
203
+ - test/transport/tc_integration.rb
204
+ - test/transport/tc_packet_stream.rb
205
+ - test/transport/tc_session.rb
206
+ - test/transport/tc_version_negotiator.rb
207
+ - test/transport/compress/tc_none_compress.rb
208
+ - test/transport/compress/tc_none_decompress.rb
209
+ - test/transport/compress/tc_zlib_compress.rb
210
+ - test/transport/compress/tc_zlib_decompress.rb
211
+ - test/transport/kex/tc_dh.rb
212
+ - test/transport/kex/tc_dh_gex.rb
213
+ - test/transport/ossl/fixtures
214
+ - test/transport/ossl/hmac
215
+ - test/transport/ossl/tc_buffer.rb
216
+ - test/transport/ossl/tc_buffer_factory.rb
217
+ - test/transport/ossl/tc_cipher_factory.rb
218
+ - test/transport/ossl/tc_digest_factory.rb
219
+ - test/transport/ossl/tc_hmac_factory.rb
220
+ - test/transport/ossl/tc_key_factory.rb
221
+ - test/transport/ossl/fixtures/dsa-encrypted
222
+ - test/transport/ossl/fixtures/dsa-encrypted-bad
223
+ - test/transport/ossl/fixtures/dsa-unencrypted
224
+ - test/transport/ossl/fixtures/dsa-unencrypted-bad
225
+ - test/transport/ossl/fixtures/dsa-unencrypted.pub
226
+ - test/transport/ossl/fixtures/not-a-private-key
227
+ - test/transport/ossl/fixtures/not-supported
228
+ - test/transport/ossl/fixtures/rsa-encrypted
229
+ - test/transport/ossl/fixtures/rsa-encrypted-bad
230
+ - test/transport/ossl/fixtures/rsa-unencrypted
231
+ - test/transport/ossl/fixtures/rsa-unencrypted-bad
232
+ - test/transport/ossl/fixtures/rsa-unencrypted.pub
233
+ - test/transport/ossl/hmac/tc_hmac.rb
234
+ - test/transport/ossl/hmac/tc_md5.rb
235
+ - test/transport/ossl/hmac/tc_md5_96.rb
236
+ - test/transport/ossl/hmac/tc_none.rb
237
+ - test/transport/ossl/hmac/tc_sha1.rb
238
+ - test/transport/ossl/hmac/tc_sha1_96.rb
239
+ - test/userauth/methods
240
+ - test/userauth/tc_agent.rb
241
+ - test/userauth/tc_driver.rb
242
+ - test/userauth/tc_integration.rb
243
+ - test/userauth/tc_userkeys.rb
244
+ - test/userauth/methods/tc_hostbased.rb
245
+ - test/userauth/methods/tc_password.rb
246
+ - test/userauth/methods/tc_publickey.rb
247
+ - test/util/tc_buffer.rb
261
248
  test_files:
262
- - test/ALL-TESTS.rb
249
+ - test/ALL-TESTS.rb
263
250
  rdoc_options: []
251
+
264
252
  extra_rdoc_files: []
253
+
265
254
  executables: []
255
+
266
256
  extensions: []
257
+
267
258
  requirements: []
259
+
268
260
  dependencies:
269
- - !ruby/object:Gem::Dependency
270
- name: needle
271
- version_requirement:
272
- version_requirements: !ruby/object:Gem::Version::Requirement
273
- requirements:
274
- -
275
- - ">="
276
- - !ruby/object:Gem::Version
277
- version: 1.2.0
278
- version:
261
+ - !ruby/object:Gem::Dependency
262
+ name: needle
263
+ version_requirement:
264
+ version_requirements: !ruby/object:Gem::Version::Requirement
265
+ requirements:
266
+ - - ">="
267
+ - !ruby/object:Gem::Version
268
+ version: 1.2.0
269
+ version: