diff options
author | Hans Nilsson <[email protected]> | 2017-02-06 12:20:37 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-02-06 12:21:54 +0100 |
commit | da0f783dce990e6c3953a7852a8c90a1933b21b2 (patch) | |
tree | 576f90ed235cd074cfdb36fddd4e382931c4d220 /lib | |
parent | 2e25e7890af04d9001fa777d848ebce6d059edf2 (diff) | |
download | otp-da0f783dce990e6c3953a7852a8c90a1933b21b2.tar.gz otp-da0f783dce990e6c3953a7852a8c90a1933b21b2.tar.bz2 otp-da0f783dce990e6c3953a7852a8c90a1933b21b2.zip |
Revert "ssh: removed 'ssh-dss' from default list"
This reverts commit 6847d9223420fb86cdf72f0e608a5f41a2673053.
The removal of ssh-dss seems to give a too high risk of failing customer systems. Needs to be properly deprecated.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh/src/ssh_transport.erl | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/ssh/src/ssh_transport.erl b/lib/ssh/src/ssh_transport.erl index 02209d5dfd..5d178a202d 100644 --- a/lib/ssh/src/ssh_transport.erl +++ b/lib/ssh/src/ssh_transport.erl @@ -84,11 +84,6 @@ default_algorithms(kex) -> 'diffie-hellman-group1-sha1' % Gone in OpenSSH 7.3.p1 ]); -default_algorithms(public_key) -> - supported_algorithms(public_key, [ - 'ssh-dss' % Gone in OpenSSH 7.3.p1 - ]); - default_algorithms(cipher) -> supported_algorithms(cipher, same(['AEAD_AES_128_GCM', 'AEAD_AES_256_GCM'])); |