diff options
author | Zdenek Zambersky <zzambers@redhat.com> | 2021-05-06 13:50:20 +0200 |
---|---|---|
committer | Florian Wininger <fw.centrale@gmail.com> | 2021-10-25 15:59:19 +0200 |
commit | 91254c72586179469ee59e4b0bd1d54960ce8d88 (patch) | |
tree | 2a2b52c5bf7ac31804d1d6f018a4b5ddf805ca79 /lib/net/ssh/authentication/ed25519.rb | |
parent | 0150d054f0cd0beacd4ba1000c6df6d8636a2c18 (diff) | |
download | net-ssh-rsa-sha2.tar.gz |
Added support for RSA client authentication with SHA-2rsa-sha2
Diffstat (limited to 'lib/net/ssh/authentication/ed25519.rb')
-rw-r--r-- | lib/net/ssh/authentication/ed25519.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/ssh/authentication/ed25519.rb b/lib/net/ssh/authentication/ed25519.rb index c2a117a..dccc64f 100644 --- a/lib/net/ssh/authentication/ed25519.rb +++ b/lib/net/ssh/authentication/ed25519.rb @@ -171,7 +171,7 @@ module Net PubKey.new(@pk) end - def ssh_do_sign(data) + def ssh_do_sign(data, sig_alg = nil) @sign_key.sign(data) end |