net-ssh 1.0.3 → 1.0.4

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.
Files changed (141) hide show
  1. data/doc/LICENSE-BSD +1 -1
  2. data/doc/LICENSE-RUBY +1 -1
  3. data/doc/manual-html/chapter-1.html +4 -4
  4. data/doc/manual-html/chapter-2.html +2 -2
  5. data/doc/manual-html/chapter-3.html +2 -2
  6. data/doc/manual-html/chapter-4.html +2 -2
  7. data/doc/manual-html/chapter-5.html +2 -2
  8. data/doc/manual-html/chapter-6.html +2 -2
  9. data/doc/manual-html/chapter-7.html +2 -2
  10. data/doc/manual-html/index.html +2 -2
  11. data/doc/manual/parts/0003.txt +1 -1
  12. data/doc/manual/parts/0005.txt +1 -1
  13. data/examples/channel-demo.rb +1 -1
  14. data/examples/port-forward.rb +1 -1
  15. data/examples/process-demo.rb +1 -1
  16. data/examples/remote-net-port-forward.rb +1 -1
  17. data/examples/remote-port-forward.rb +1 -1
  18. data/examples/shell-demo.rb +1 -1
  19. data/examples/ssh-client.rb +1 -1
  20. data/examples/sync-shell-demo.rb +1 -1
  21. data/examples/tail-demo.rb +1 -1
  22. data/lib/net/ssh.rb +1 -1
  23. data/lib/net/ssh/connection/channel.rb +1 -1
  24. data/lib/net/ssh/connection/constants.rb +1 -1
  25. data/lib/net/ssh/connection/driver.rb +1 -1
  26. data/lib/net/ssh/connection/services.rb +1 -1
  27. data/lib/net/ssh/connection/term.rb +1 -1
  28. data/lib/net/ssh/errors.rb +1 -1
  29. data/lib/net/ssh/proxy/errors.rb +1 -1
  30. data/lib/net/ssh/proxy/http.rb +1 -1
  31. data/lib/net/ssh/proxy/socks4.rb +1 -1
  32. data/lib/net/ssh/proxy/socks5.rb +1 -1
  33. data/lib/net/ssh/service/forward/driver.rb +1 -1
  34. data/lib/net/ssh/service/forward/local-network-handler.rb +1 -1
  35. data/lib/net/ssh/service/forward/remote-network-handler.rb +1 -1
  36. data/lib/net/ssh/service/forward/services.rb +1 -1
  37. data/lib/net/ssh/service/process/driver.rb +1 -1
  38. data/lib/net/ssh/service/process/open.rb +1 -1
  39. data/lib/net/ssh/service/process/popen3.rb +1 -1
  40. data/lib/net/ssh/service/process/services.rb +1 -1
  41. data/lib/net/ssh/service/services.rb +1 -1
  42. data/lib/net/ssh/service/shell/driver.rb +1 -1
  43. data/lib/net/ssh/service/shell/services.rb +1 -1
  44. data/lib/net/ssh/service/shell/shell.rb +1 -1
  45. data/lib/net/ssh/service/shell/sync.rb +1 -1
  46. data/lib/net/ssh/session.rb +1 -1
  47. data/lib/net/ssh/transport/algorithm-negotiator.rb +1 -1
  48. data/lib/net/ssh/transport/compress/compressor.rb +1 -1
  49. data/lib/net/ssh/transport/compress/decompressor.rb +1 -1
  50. data/lib/net/ssh/transport/compress/none-compressor.rb +1 -1
  51. data/lib/net/ssh/transport/compress/none-decompressor.rb +1 -1
  52. data/lib/net/ssh/transport/compress/services.rb +1 -1
  53. data/lib/net/ssh/transport/compress/zlib-compressor.rb +1 -1
  54. data/lib/net/ssh/transport/compress/zlib-decompressor.rb +1 -1
  55. data/lib/net/ssh/transport/constants.rb +1 -1
  56. data/lib/net/ssh/transport/errors.rb +1 -1
  57. data/lib/net/ssh/transport/identity-cipher.rb +1 -1
  58. data/lib/net/ssh/transport/kex/dh-gex.rb +1 -1
  59. data/lib/net/ssh/transport/kex/dh.rb +1 -1
  60. data/lib/net/ssh/transport/kex/services.rb +1 -1
  61. data/lib/net/ssh/transport/ossl/buffer-factory.rb +1 -1
  62. data/lib/net/ssh/transport/ossl/buffer.rb +1 -1
  63. data/lib/net/ssh/transport/ossl/cipher-factory.rb +1 -1
  64. data/lib/net/ssh/transport/ossl/digest-factory.rb +1 -1
  65. data/lib/net/ssh/transport/ossl/hmac-factory.rb +1 -1
  66. data/lib/net/ssh/transport/ossl/hmac/hmac.rb +1 -1
  67. data/lib/net/ssh/transport/ossl/hmac/md5-96.rb +1 -1
  68. data/lib/net/ssh/transport/ossl/hmac/md5.rb +1 -1
  69. data/lib/net/ssh/transport/ossl/hmac/none.rb +1 -1
  70. data/lib/net/ssh/transport/ossl/hmac/services.rb +1 -1
  71. data/lib/net/ssh/transport/ossl/hmac/sha1-96.rb +1 -1
  72. data/lib/net/ssh/transport/ossl/hmac/sha1.rb +1 -1
  73. data/lib/net/ssh/transport/ossl/key-factory.rb +1 -1
  74. data/lib/net/ssh/transport/ossl/services.rb +1 -1
  75. data/lib/net/ssh/transport/packet-stream.rb +1 -1
  76. data/lib/net/ssh/transport/services.rb +1 -1
  77. data/lib/net/ssh/transport/session.rb +1 -1
  78. data/lib/net/ssh/transport/version-negotiator.rb +1 -1
  79. data/lib/net/ssh/userauth/agent.rb +1 -1
  80. data/lib/net/ssh/userauth/constants.rb +1 -1
  81. data/lib/net/ssh/userauth/driver.rb +1 -1
  82. data/lib/net/ssh/userauth/methods/hostbased.rb +1 -1
  83. data/lib/net/ssh/userauth/methods/keyboard-interactive.rb +1 -1
  84. data/lib/net/ssh/userauth/methods/password.rb +1 -1
  85. data/lib/net/ssh/userauth/methods/publickey.rb +1 -1
  86. data/lib/net/ssh/userauth/methods/services.rb +1 -1
  87. data/lib/net/ssh/userauth/pageant.rb +1 -1
  88. data/lib/net/ssh/userauth/services.rb +1 -1
  89. data/lib/net/ssh/userauth/userkeys.rb +1 -1
  90. data/lib/net/ssh/util/buffer.rb +1 -1
  91. data/lib/net/ssh/util/openssl.rb +1 -1
  92. data/lib/net/ssh/util/prompter.rb +1 -1
  93. data/lib/net/ssh/version.rb +2 -2
  94. data/test/ALL-TESTS.rb +2 -5
  95. data/test/connection/tc_channel.rb +2 -2
  96. data/test/connection/tc_driver.rb +2 -2
  97. data/test/connection/tc_integration.rb +2 -2
  98. data/test/proxy/tc_http.rb +2 -2
  99. data/test/proxy/tc_socks4.rb +2 -2
  100. data/test/proxy/tc_socks5.rb +2 -2
  101. data/test/service/forward/tc_driver.rb +2 -2
  102. data/test/service/forward/tc_local_network_handler.rb +2 -2
  103. data/test/service/forward/tc_remote_network_handler.rb +2 -2
  104. data/test/service/process/tc_driver.rb +2 -2
  105. data/test/service/process/tc_integration.rb +2 -2
  106. data/test/service/process/tc_open.rb +2 -2
  107. data/test/service/process/tc_popen3.rb +2 -2
  108. data/test/tc_integration.rb +2 -2
  109. data/test/transport/compress/tc_none_compress.rb +2 -2
  110. data/test/transport/compress/tc_none_decompress.rb +2 -2
  111. data/test/transport/compress/tc_zlib_compress.rb +2 -2
  112. data/test/transport/compress/tc_zlib_decompress.rb +2 -2
  113. data/test/transport/kex/tc_dh.rb +12 -11
  114. data/test/transport/kex/tc_dh_gex.rb +3 -3
  115. data/test/transport/ossl/hmac/tc_hmac.rb +2 -2
  116. data/test/transport/ossl/hmac/tc_md5.rb +2 -2
  117. data/test/transport/ossl/hmac/tc_md5_96.rb +2 -2
  118. data/test/transport/ossl/hmac/tc_none.rb +2 -2
  119. data/test/transport/ossl/hmac/tc_sha1.rb +2 -2
  120. data/test/transport/ossl/hmac/tc_sha1_96.rb +2 -2
  121. data/test/transport/ossl/tc_buffer.rb +2 -2
  122. data/test/transport/ossl/tc_buffer_factory.rb +2 -2
  123. data/test/transport/ossl/tc_cipher_factory.rb +2 -2
  124. data/test/transport/ossl/tc_digest_factory.rb +2 -2
  125. data/test/transport/ossl/tc_hmac_factory.rb +2 -2
  126. data/test/transport/ossl/tc_key_factory.rb +2 -2
  127. data/test/transport/tc_algorithm_negotiator.rb +2 -2
  128. data/test/transport/tc_identity_cipher.rb +2 -2
  129. data/test/transport/tc_integration.rb +2 -2
  130. data/test/transport/tc_packet_stream.rb +2 -2
  131. data/test/transport/tc_session.rb +2 -2
  132. data/test/transport/tc_version_negotiator.rb +2 -2
  133. data/test/userauth/methods/tc_hostbased.rb +2 -2
  134. data/test/userauth/methods/tc_password.rb +2 -2
  135. data/test/userauth/methods/tc_publickey.rb +2 -2
  136. data/test/userauth/tc_agent.rb +2 -2
  137. data/test/userauth/tc_driver.rb +2 -2
  138. data/test/userauth/tc_integration.rb +2 -2
  139. data/test/userauth/tc_userkeys.rb +2 -2
  140. data/test/util/tc_buffer.rb +2 -2
  141. metadata +252 -249
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../../lib"
18
18
 
19
19
  require 'net/ssh/transport/ossl/buffer'
20
20
  require 'test/unit'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../../lib"
18
18
 
19
19
  require 'net/ssh/transport/ossl/buffer-factory'
20
20
  require 'test/unit'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../../lib"
18
18
 
19
19
  require 'net/ssh/transport/ossl/cipher-factory'
20
20
  require 'test/unit'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../../lib"
18
18
 
19
19
  require 'net/ssh/transport/ossl/digest-factory'
20
20
  require 'test/unit'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../../lib"
18
18
 
19
19
  require 'net/ssh/transport/ossl/hmac-factory'
20
20
  require 'test/unit'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../../lib"
18
18
 
19
19
  require 'net/ssh/transport/ossl/buffer'
20
20
  require 'net/ssh/transport/ossl/key-factory'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  require 'net/ssh/transport/algorithm-negotiator'
20
20
  require 'net/ssh/transport/constants'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  require 'net/ssh/transport/identity-cipher'
20
20
  require 'test/unit'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  if $run_integration_tests || __FILE__ == $0
20
20
 
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  require 'net/ssh/transport/packet-stream'
20
20
  require 'net/ssh/util/buffer'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  require 'net/ssh/transport/constants'
20
20
  require 'net/ssh/transport/session'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  require 'net/ssh/transport/version-negotiator'
20
20
  require 'test/unit'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../../lib"
18
18
 
19
19
  require 'net/ssh/userauth/methods/hostbased'
20
20
  require 'net/ssh/util/buffer'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../../lib"
18
18
 
19
19
  require 'net/ssh/userauth/methods/password'
20
20
  require 'net/ssh/util/buffer'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../../lib"
18
18
 
19
19
  require 'net/ssh/userauth/methods/publickey'
20
20
  require 'net/ssh/util/buffer'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  require 'net/ssh/userauth/agent'
20
20
  require 'net/ssh/util/buffer'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  require 'net/ssh/userauth/driver'
20
20
  require 'net/ssh/util/buffer'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  if $run_integration_tests || __FILE__ == $0
20
20
 
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
 
19
19
  require 'net/ssh/userauth/userkeys'
20
20
  require 'net/ssh/util/buffer'
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
3
+ # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
4
4
  # All rights reserved.
5
5
  #
6
6
  # This source file is distributed as part of the Net::SSH Secure Shell Client
@@ -14,7 +14,7 @@
14
14
  # =============================================================================
15
15
  #++
16
16
 
17
- $:.unshift "../../lib"
17
+ $:.unshift "#{File.dirname(__FILE__)}/../../lib"
18
18
  require 'test/unit'
19
19
  require 'net/ssh/util/buffer'
20
20
  require 'net/ssh/util/openssl'
metadata CHANGED
@@ -3,12 +3,12 @@ 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.3
7
- date: 2005-11-09 00:00:00 -07:00
6
+ version: 1.0.4
7
+ date: 2005-12-24 00:00:00 -07:00
8
8
  summary: Net::SSH is a pure-Ruby implementation of the SSH2 client protocol.
9
9
  require_paths:
10
- - lib
11
- email: jgb3@email.byu.edu
10
+ - lib
11
+ email: jamis@37signals.com
12
12
  homepage: http://net-ssh.rubyforge.org
13
13
  rubyforge_project:
14
14
  description:
@@ -18,261 +18,264 @@ 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-html
36
+ - doc/manual/chapter.erb
37
+ - doc/manual/example.erb
38
+ - doc/manual/index.erb
39
+ - doc/manual/manual.rb
40
+ - doc/manual/manual.yml
41
+ - doc/manual/page.erb
42
+ - doc/manual/parts
43
+ - doc/manual/stylesheets
44
+ - doc/manual/tutorial.erb
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/manual.css
78
+ - doc/manual/stylesheets/ruby.css
79
+ - doc/manual-html/chapter-1.html
80
+ - doc/manual-html/chapter-2.html
81
+ - doc/manual-html/chapter-3.html
82
+ - doc/manual-html/chapter-4.html
83
+ - doc/manual-html/chapter-5.html
84
+ - doc/manual-html/chapter-6.html
85
+ - doc/manual-html/chapter-7.html
86
+ - doc/manual-html/index.html
87
+ - doc/manual-html/stylesheets
88
+ - doc/manual-html/stylesheets/manual.css
89
+ - doc/manual-html/stylesheets/ruby.css
90
+ - lib/net
91
+ - lib/net/ssh
92
+ - lib/net/ssh.rb
93
+ - lib/net/ssh/connection
94
+ - lib/net/ssh/errors.rb
95
+ - lib/net/ssh/proxy
96
+ - lib/net/ssh/service
97
+ - lib/net/ssh/session.rb
98
+ - lib/net/ssh/transport
99
+ - lib/net/ssh/userauth
100
+ - lib/net/ssh/util
101
+ - lib/net/ssh/version.rb
102
+ - lib/net/ssh/connection/channel.rb
103
+ - lib/net/ssh/connection/constants.rb
104
+ - lib/net/ssh/connection/driver.rb
105
+ - lib/net/ssh/connection/services.rb
106
+ - lib/net/ssh/connection/term.rb
107
+ - lib/net/ssh/proxy/errors.rb
108
+ - lib/net/ssh/proxy/http.rb
109
+ - lib/net/ssh/proxy/socks4.rb
110
+ - lib/net/ssh/proxy/socks5.rb
111
+ - lib/net/ssh/service/forward
112
+ - lib/net/ssh/service/process
113
+ - lib/net/ssh/service/services.rb
114
+ - lib/net/ssh/service/shell
115
+ - lib/net/ssh/service/forward/driver.rb
116
+ - lib/net/ssh/service/forward/local-network-handler.rb
117
+ - lib/net/ssh/service/forward/remote-network-handler.rb
118
+ - lib/net/ssh/service/forward/services.rb
119
+ - lib/net/ssh/service/process/driver.rb
120
+ - lib/net/ssh/service/process/open.rb
121
+ - lib/net/ssh/service/process/popen3.rb
122
+ - lib/net/ssh/service/process/services.rb
123
+ - lib/net/ssh/service/shell/driver.rb
124
+ - lib/net/ssh/service/shell/services.rb
125
+ - lib/net/ssh/service/shell/shell.rb
126
+ - lib/net/ssh/service/shell/sync.rb
127
+ - lib/net/ssh/transport/algorithm-negotiator.rb
128
+ - lib/net/ssh/transport/compress
129
+ - lib/net/ssh/transport/constants.rb
130
+ - lib/net/ssh/transport/errors.rb
131
+ - lib/net/ssh/transport/identity-cipher.rb
132
+ - lib/net/ssh/transport/kex
133
+ - lib/net/ssh/transport/ossl
134
+ - lib/net/ssh/transport/packet-stream.rb
135
+ - lib/net/ssh/transport/services.rb
136
+ - lib/net/ssh/transport/session.rb
137
+ - lib/net/ssh/transport/version-negotiator.rb
138
+ - lib/net/ssh/transport/compress/compressor.rb
139
+ - lib/net/ssh/transport/compress/decompressor.rb
140
+ - lib/net/ssh/transport/compress/none-compressor.rb
141
+ - lib/net/ssh/transport/compress/none-decompressor.rb
142
+ - lib/net/ssh/transport/compress/services.rb
143
+ - lib/net/ssh/transport/compress/zlib-compressor.rb
144
+ - lib/net/ssh/transport/compress/zlib-decompressor.rb
145
+ - lib/net/ssh/transport/kex/dh-gex.rb
146
+ - lib/net/ssh/transport/kex/dh.rb
147
+ - lib/net/ssh/transport/kex/services.rb
148
+ - lib/net/ssh/transport/ossl/buffer-factory.rb
149
+ - lib/net/ssh/transport/ossl/buffer.rb
150
+ - lib/net/ssh/transport/ossl/cipher-factory.rb
151
+ - lib/net/ssh/transport/ossl/digest-factory.rb
152
+ - lib/net/ssh/transport/ossl/hmac
153
+ - lib/net/ssh/transport/ossl/hmac-factory.rb
154
+ - lib/net/ssh/transport/ossl/key-factory.rb
155
+ - lib/net/ssh/transport/ossl/services.rb
156
+ - lib/net/ssh/transport/ossl/hmac/hmac.rb
157
+ - lib/net/ssh/transport/ossl/hmac/md5-96.rb
158
+ - lib/net/ssh/transport/ossl/hmac/md5.rb
159
+ - lib/net/ssh/transport/ossl/hmac/none.rb
160
+ - lib/net/ssh/transport/ossl/hmac/services.rb
161
+ - lib/net/ssh/transport/ossl/hmac/sha1-96.rb
162
+ - lib/net/ssh/transport/ossl/hmac/sha1.rb
163
+ - lib/net/ssh/userauth/agent.rb
164
+ - lib/net/ssh/userauth/constants.rb
165
+ - lib/net/ssh/userauth/driver.rb
166
+ - lib/net/ssh/userauth/methods
167
+ - lib/net/ssh/userauth/pageant.rb
168
+ - lib/net/ssh/userauth/services.rb
169
+ - lib/net/ssh/userauth/userkeys.rb
170
+ - lib/net/ssh/userauth/methods/hostbased.rb
171
+ - lib/net/ssh/userauth/methods/keyboard-interactive.rb
172
+ - lib/net/ssh/userauth/methods/password.rb
173
+ - lib/net/ssh/userauth/methods/publickey.rb
174
+ - lib/net/ssh/userauth/methods/services.rb
175
+ - lib/net/ssh/util/buffer.rb
176
+ - lib/net/ssh/util/openssl.rb
177
+ - lib/net/ssh/util/prompter.rb
178
+ - examples/channel-demo.rb
179
+ - examples/port-forward.rb
180
+ - examples/process-demo.rb
181
+ - examples/remote-net-port-forward.rb
182
+ - examples/remote-port-forward.rb
183
+ - examples/shell-demo.rb
184
+ - examples/ssh-client.rb
185
+ - examples/sync-shell-demo.rb
186
+ - examples/tail-demo.rb
187
+ - test/ALL-TESTS.rb
188
+ - test/connection
189
+ - test/proxy
190
+ - test/service
191
+ - test/tc_integration.rb
192
+ - test/transport
193
+ - test/userauth
194
+ - test/util
195
+ - test/connection/tc_channel.rb
196
+ - test/connection/tc_driver.rb
197
+ - test/connection/tc_integration.rb
198
+ - test/proxy/tc_http.rb
199
+ - test/proxy/tc_socks4.rb
200
+ - test/proxy/tc_socks5.rb
201
+ - test/service/forward
202
+ - test/service/process
203
+ - test/service/forward/tc_driver.rb
204
+ - test/service/forward/tc_local_network_handler.rb
205
+ - test/service/forward/tc_remote_network_handler.rb
206
+ - test/service/process/tc_driver.rb
207
+ - test/service/process/tc_integration.rb
208
+ - test/service/process/tc_open.rb
209
+ - test/service/process/tc_popen3.rb
210
+ - test/transport/compress
211
+ - test/transport/kex
212
+ - test/transport/ossl
213
+ - test/transport/tc_algorithm_negotiator.rb
214
+ - test/transport/tc_identity_cipher.rb
215
+ - test/transport/tc_integration.rb
216
+ - test/transport/tc_packet_stream.rb
217
+ - test/transport/tc_session.rb
218
+ - test/transport/tc_version_negotiator.rb
219
+ - test/transport/compress/tc_none_compress.rb
220
+ - test/transport/compress/tc_none_decompress.rb
221
+ - test/transport/compress/tc_zlib_compress.rb
222
+ - test/transport/compress/tc_zlib_decompress.rb
223
+ - test/transport/kex/tc_dh.rb
224
+ - test/transport/kex/tc_dh_gex.rb
225
+ - test/transport/ossl/fixtures
226
+ - test/transport/ossl/hmac
227
+ - test/transport/ossl/tc_buffer.rb
228
+ - test/transport/ossl/tc_buffer_factory.rb
229
+ - test/transport/ossl/tc_cipher_factory.rb
230
+ - test/transport/ossl/tc_digest_factory.rb
231
+ - test/transport/ossl/tc_hmac_factory.rb
232
+ - test/transport/ossl/tc_key_factory.rb
233
+ - test/transport/ossl/fixtures/dsa-encrypted
234
+ - test/transport/ossl/fixtures/dsa-encrypted-bad
235
+ - test/transport/ossl/fixtures/dsa-unencrypted
236
+ - test/transport/ossl/fixtures/dsa-unencrypted-bad
237
+ - test/transport/ossl/fixtures/dsa-unencrypted.pub
238
+ - test/transport/ossl/fixtures/not-a-private-key
239
+ - test/transport/ossl/fixtures/not-supported
240
+ - test/transport/ossl/fixtures/rsa-encrypted
241
+ - test/transport/ossl/fixtures/rsa-encrypted-bad
242
+ - test/transport/ossl/fixtures/rsa-unencrypted
243
+ - test/transport/ossl/fixtures/rsa-unencrypted-bad
244
+ - test/transport/ossl/fixtures/rsa-unencrypted.pub
245
+ - test/transport/ossl/hmac/tc_hmac.rb
246
+ - test/transport/ossl/hmac/tc_md5.rb
247
+ - test/transport/ossl/hmac/tc_md5_96.rb
248
+ - test/transport/ossl/hmac/tc_none.rb
249
+ - test/transport/ossl/hmac/tc_sha1.rb
250
+ - test/transport/ossl/hmac/tc_sha1_96.rb
251
+ - test/userauth/methods
252
+ - test/userauth/tc_agent.rb
253
+ - test/userauth/tc_driver.rb
254
+ - test/userauth/tc_integration.rb
255
+ - test/userauth/tc_userkeys.rb
256
+ - test/userauth/methods/tc_hostbased.rb
257
+ - test/userauth/methods/tc_password.rb
258
+ - test/userauth/methods/tc_publickey.rb
259
+ - test/util/tc_buffer.rb
261
260
  test_files:
262
- - test/ALL-TESTS.rb
261
+ - test/ALL-TESTS.rb
263
262
  rdoc_options: []
263
+
264
264
  extra_rdoc_files: []
265
+
265
266
  executables: []
267
+
266
268
  extensions: []
269
+
267
270
  requirements: []
271
+
268
272
  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:
273
+ - !ruby/object:Gem::Dependency
274
+ name: needle
275
+ version_requirement:
276
+ version_requirements: !ruby/object:Gem::Version::Requirement
277
+ requirements:
278
+ - - ">="
279
+ - !ruby/object:Gem::Version
280
+ version: 1.2.0
281
+ version: