diff options
author | Hans Nilsson <[email protected]> | 2017-01-25 16:36:38 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-01-25 16:36:38 +0100 |
commit | e0b2554dcfae4a8a20adbb3ebf226f7ebe4f89ab (patch) | |
tree | 5ebee716962a3305a3e6caa21bf3879dee3f79fd /lib | |
parent | 941dc6198b0ca34eff7a9b30f986e964cbcccefb (diff) | |
download | otp-e0b2554dcfae4a8a20adbb3ebf226f7ebe4f89ab.tar.gz otp-e0b2554dcfae4a8a20adbb3ebf226f7ebe4f89ab.tar.bz2 otp-e0b2554dcfae4a8a20adbb3ebf226f7ebe4f89ab.zip |
ssh: correct host key signature calculation
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh/src/ssh_transport.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_transport.erl b/lib/ssh/src/ssh_transport.erl index 21ba34506a..5e8efa2af7 100644 --- a/lib/ssh/src/ssh_transport.erl +++ b/lib/ssh/src/ssh_transport.erl @@ -432,7 +432,7 @@ handle_kex_dh_gex_request(#ssh_msg_kex_dh_gex_request{min = Min0, ssh_packet(#ssh_msg_kex_dh_gex_group{p = P, g = G}, Ssh0), {ok, SshPacket, Ssh#ssh{keyex_key = {{Private, Public}, {G, P}}, - keyex_info = {Min, Max, NBits} + keyex_info = {Min0, Max0, NBits} }}; {error,_} -> ssh_connection_handler:disconnect( |