diff options
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/doc/src/ssh.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/ssh/doc/src/ssh.xml b/lib/ssh/doc/src/ssh.xml index 7c1b9ea0dc..06bc39f8fe 100644 --- a/lib/ssh/doc/src/ssh.xml +++ b/lib/ssh/doc/src/ssh.xml @@ -477,13 +477,14 @@ kex is implicit but public_key is set explicitly.</p> <tag><c><![CDATA[{dh_gex_limits,{Min=integer(),Max=integer()}}]]></c></tag> <item> - <p>Limits what a client can ask for in diffie-hellman-group-exchange. The effective value will be + <p>Limits the key Sizes what a client can ask for in diffie-hellman-group-exchange. + The effective value will be <c>MaxUsed = min(MaxClient,Max), MinUsed = max(MinClient,Min)</c>. + The default value is <c>{0,infinity}</c>. </p> - <p>If <c>MaxUsed < MinUses</c> in a key exchange, it will fail with a disconnect. - </p> - <p>See RFC 4419 for the function of the max an min values. + <p>If <c>MaxUsed < MinUsed</c> in a key exchange, it will fail with a disconnect. </p> + <p>See RFC 4419 for the function of the Max an Min values.</p> </item> <tag><c><![CDATA[{pwdfun, fun(User::string(), password::string()) -> boolean()}]]></c></tag> |