Package: ruby-net-ssh / 1:6.1.0-2+deb11u1

Metadata

Package Version Patches format
ruby-net-ssh 1:6.1.0-2+deb11u1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 Added support for RSA client authentication with SHA.patch | (download)

lib/net/ssh/authentication/certificate.rb | 4 2 + 2 - 0 !
lib/net/ssh/authentication/ed25519.rb | 2 1 + 1 - 0 !
lib/net/ssh/authentication/key_manager.rb | 22 18 + 4 - 0 !
lib/net/ssh/authentication/methods/abstract.rb | 10 10 + 0 - 0 !
lib/net/ssh/authentication/methods/publickey.rb | 66 54 + 12 - 0 !
lib/net/ssh/authentication/session.rb | 5 4 + 1 - 0 !
lib/net/ssh/transport/openssl.rb | 16 12 + 4 - 0 !
test/authentication/methods/test_publickey.rb | 71 64 + 7 - 0 !
test/authentication/test_session.rb | 6 4 + 2 - 0 !
9 files changed, 169 insertions(+), 33 deletions(-)

 added support for rsa client authentication with sha-2

Source: https://github.com/net-ssh/net-ssh/pull/838
Backported-By: Antonio Terceiro <terceiro@debian.org>

0002 Implemented rsa sha2 512 rsa sha2 256 host_key algs.patch | (download)

.gitignore | 2 2 + 0 - 0 !
lib/net/ssh/authentication/certificate.rb | 4 2 + 2 - 0 !
lib/net/ssh/authentication/ed25519.rb | 2 1 + 1 - 0 !
lib/net/ssh/transport/algorithms.rb | 4 3 + 1 - 0 !
lib/net/ssh/transport/kex/abstract.rb | 11 9 + 2 - 0 !
lib/net/ssh/transport/openssl.rb | 17 13 + 4 - 0 !
test/integration/Vagrantfile | 5 3 + 2 - 0 !
test/integration/common.rb | 10 9 + 1 - 0 !
test/integration/playbook.yml | 11 9 + 2 - 0 !
test/transport/kex/test_ecdh_sha2_nistp256.rb | 2 1 + 1 - 0 !
test/transport/test_algorithms.rb | 14 7 + 7 - 0 !
11 files changed, 59 insertions(+), 23 deletions(-)

 implemented rsa-sha2-512, rsa-sha2-256 host_key algs

This patch is a combination of the 4 commits in the Pull Request
mentioned below.

Source: https://github.com/net-ssh/net-ssh/pull/771
Backported-By: Antonio Terceiro <terceiro@debian.org>