summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Pyatkin <aspyatkin@users.noreply.github.com>2020-02-11 13:39:13 +0400
committerAlexander Pyatkin <aspyatkin@users.noreply.github.com>2020-02-11 13:39:13 +0400
commit64ab9a66176eb91a9375255395c2b2f26929b885 (patch)
treed08011e83d3d434ea8f50f0301f79799f31453c1
parent71634cbb0fbc15abb989f8652a866d715012f8e2 (diff)
downloadnet-ssh-64ab9a66176eb91a9375255395c2b2f26929b885.tar.gz
Fix kex algorithm name
-rw-r--r--lib/net/ssh/transport/algorithms.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/ssh/transport/algorithms.rb b/lib/net/ssh/transport/algorithms.rb
index f286d2c..ed656ee 100644
--- a/lib/net/ssh/transport/algorithms.rb
+++ b/lib/net/ssh/transport/algorithms.rb
@@ -58,7 +58,7 @@ module Net
if Net::SSH::Transport::Kex::Curve25519Sha256Loader::LOADED
DEFAULT_ALGORITHMS[:kex].unshift(
'curve25519-sha256',
- 'curve22519-sha256@libssh.org'
+ 'curve25519-sha256@libssh.org'
)
end