net-ssh 5.0.1 → 5.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3db41d065249857491598919a85f6a4375b83902d64d717f3b4144baa5067e40
4
- data.tar.gz: 4d83fc87989c6bad8b10bd179eac7da9bdd2e0303211455508df3546a3f47247
3
+ metadata.gz: b811c98652578718dfc0112f9f89ff69b08a977b88ea28d46a9ff67cb7d1a039
4
+ data.tar.gz: '0901aaa3ec0a241bbb14f1b04a004eaac36d1621b4a73751df1a67ddfc7b45c7'
5
5
  SHA512:
6
- metadata.gz: 99e6914983b69eb9a986b0ebcaa9840aa4a17ebdcf384e15c0bb1fbfe2573748b5604c6da349dfc89030c86ee77a2057e7a44da2fef95596a6bf907edc479319
7
- data.tar.gz: 482d14a02aa932bc0b32a756ed661ed408426015b8900e472632407102a36436ab943a8e86072cb6ece9f0abd492e2045d46dbc5149be7d7a94ca70562ebc10a
6
+ metadata.gz: f8c2f7db919776efeed510c073430b6cf171609a74e751db6689c9b1bad58ffea22074d275c486ab614f79bc0804b799c039a55766ddc620512c8ece29a0703d
7
+ data.tar.gz: b4626d64f019e7ad8714eb6ce314fa695502f39be068c0e03f03090acfa1a6c44c103c1336fa904bc63d2d853481dd413b69f9c37c6d21eaf8242abf6a28c995
Binary file
data.tar.gz.sig CHANGED
Binary file
data/.gitignore CHANGED
@@ -1,6 +1,10 @@
1
1
  /Gemfile.lock
2
2
  doc
3
+ rdoc
3
4
  ri
4
5
  pkg
5
6
  *.swp
6
7
  test/integration/.vagrant
8
+ test/integration/playbook.retry
9
+
10
+ .byebug_history
@@ -8,9 +8,9 @@ addon:
8
8
 
9
9
  rvm:
10
10
  - 2.2
11
- - 2.3.5
12
- - 2.4.3
13
- - 2.5.0
11
+ - 2.3.7
12
+ - 2.4.4
13
+ - 2.5.1
14
14
  - jruby-9.1.13.0
15
15
  - rbx-3.84
16
16
  - ruby-head
@@ -27,9 +27,9 @@ module Net
27
27
  "3des-ctr" => "des-ede3",
28
28
  "blowfish-ctr" => "bf-ecb",
29
29
 
30
- "aes256-ctr" => "aes-256-ctr",
31
- "aes192-ctr" => "aes-192-ctr",
32
- "aes128-ctr" => "aes-128-ctr",
30
+ "aes256-ctr" => ::OpenSSL::Cipher.ciphers.include?("aes-256-ctr") ? "aes-256-ctr" : "aes-256-ecb",
31
+ "aes192-ctr" => ::OpenSSL::Cipher.ciphers.include?("aes-192-ctr") ? "aes-192-ctr" : "aes-192-ecb",
32
+ "aes128-ctr" => ::OpenSSL::Cipher.ciphers.include?("aes-128-ctr") ? "aes-128-ctr" : "aes-128-ecb",
33
33
  "cast128-ctr" => "cast5-ecb",
34
34
 
35
35
  "none" => "none"
@@ -52,7 +52,7 @@ module Net
52
52
  MINOR = 0
53
53
 
54
54
  # The tiny component of this version of the Net::SSH library
55
- TINY = 1
55
+ TINY = 2
56
56
 
57
57
  # The prerelease component of this version of the Net::SSH library
58
58
  # nil allowed
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: net-ssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1
4
+ version: 5.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck
@@ -32,7 +32,7 @@ cert_chain:
32
32
  ZFwoIuXKeDmTTpryd/vI7sdLXDuV6MbWOLGh6gXn9RDDXG1EqEXW0bjovATBMpdH
33
33
  9OGohJvAFzcvhDTWPwT6w3PG5B80pqb9j1hEAg==
34
34
  -----END CERTIFICATE-----
35
- date: 2018-06-03 00:00:00.000000000 Z
35
+ date: 2018-06-17 00:00:00.000000000 Z
36
36
  dependencies:
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: bcrypt_pbkdf
metadata.gz.sig CHANGED
Binary file