File 0465-ssh-Fix-ssh_protocol_SUITE-for-retired-dh-sha1.patch of Package erlang
From 2ab8b8eb33a72a48c6e27808e001eb61769542f6 Mon Sep 17 00:00:00 2001
From: Hans Nilsson <hans@erlang.org>
Date: Tue, 3 Mar 2020 15:57:13 +0100
Subject: [PATCH 05/12] ssh: Fix ssh_protocol_SUITE for retired dh-*-sha1
---
lib/ssh/test/ssh_protocol_SUITE.erl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/ssh/test/ssh_protocol_SUITE.erl b/lib/ssh/test/ssh_protocol_SUITE.erl
index b12ddfeef6..befc744cbd 100644
--- a/lib/ssh/test/ssh_protocol_SUITE.erl
+++ b/lib/ssh/test/ssh_protocol_SUITE.erl
@@ -419,7 +419,7 @@ do_gex_client_init(Config, {Min,N,Max}, {G,P}) ->
[{silently_accept_hosts, true},
{user_dir, user_dir(Config)},
{user_interaction, false},
- {preferred_algorithms,[{kex,['diffie-hellman-group-exchange-sha1']},
+ {preferred_algorithms,[{kex,['diffie-hellman-group-exchange-sha256']},
{cipher,?DEFAULT_CIPHERS}
]}
]},
@@ -454,7 +454,7 @@ do_gex_client_init_old(Config, N, {G,P}) ->
[{silently_accept_hosts, true},
{user_dir, user_dir(Config)},
{user_interaction, false},
- {preferred_algorithms,[{kex,['diffie-hellman-group-exchange-sha1']},
+ {preferred_algorithms,[{kex,['diffie-hellman-group-exchange-sha256']},
{cipher,?DEFAULT_CIPHERS}
]}
]},
--
2.16.4