Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #20 from mc1arke/jenkins-43979-sha512-issues
Browse files Browse the repository at this point in the history
[JENKINS-43979] Fix OpenSSH dropping connections with SHA512 enabled
  • Loading branch information
mc1arke committed May 4, 2017
2 parents 3be61af + 3308477 commit 63b2b85
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 63b2b85

Please sign in to comment.