Skip to content

Commit

Permalink
[JENKINS-43979] Fix OpenSSH 5 dropping connections with SHA512 enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
mc1arke committed May 2, 2017
1 parent 3be61af commit 3308477
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/trilead/ssh2/DHGexParameters.java
Expand Up @@ -24,13 +24,13 @@ public class DHGexParameters
private static final int MAX_ALLOWED = 8192;

/**
* Same as calling {@link #DHGexParameters(int, int, int) DHGexParameters(1024, 1024, 4096)}.
* Same as calling {@link #DHGexParameters(int, int, int) DHGexParameters(1024, 2048, 4096)}.
* This is also the default used by the Connection class.
*
*/
public DHGexParameters()
{
this(1024, 1024, 4096);
this(1024, 2048, 4096);
}

/**
Expand Down

0 comments on commit 3308477

Please sign in to comment.