2022-08-10 13:08:21 +00:00
|
|
|
diff --git a/readconf.c b/readconf.c
|
2022-09-29 13:42:34 +00:00
|
|
|
index 7f26c680..42be690b 100644
|
2022-08-10 13:08:21 +00:00
|
|
|
--- a/readconf.c
|
|
|
|
+++ b/readconf.c
|
2023-04-27 15:52:26 +00:00
|
|
|
@@ -320,6 +320,7 @@ static struct {
|
2022-08-10 13:08:21 +00:00
|
|
|
{ "securitykeyprovider", oSecurityKeyProvider },
|
|
|
|
{ "knownhostscommand", oKnownHostsCommand },
|
2023-04-27 15:52:26 +00:00
|
|
|
{ "requiredrsasize", oRequiredRSASize },
|
2022-09-29 13:42:34 +00:00
|
|
|
+ { "rsaminsize", oRequiredRSASize }, /* alias */
|
2023-04-27 15:52:26 +00:00
|
|
|
{ "enableescapecommandline", oEnableEscapeCommandline },
|
2022-08-10 13:08:21 +00:00
|
|
|
|
|
|
|
{ NULL, oBadOption }
|
|
|
|
diff --git a/servconf.c b/servconf.c
|
2022-09-29 13:42:34 +00:00
|
|
|
index 29df0463..423772b1 100644
|
2022-08-10 13:08:21 +00:00
|
|
|
--- a/servconf.c
|
|
|
|
+++ b/servconf.c
|
2023-04-27 15:52:26 +00:00
|
|
|
@@ -676,6 +680,7 @@ static struct {
|
2022-08-10 13:08:21 +00:00
|
|
|
{ "casignaturealgorithms", sCASignatureAlgorithms, SSHCFG_ALL },
|
|
|
|
{ "securitykeyprovider", sSecurityKeyProvider, SSHCFG_GLOBAL },
|
2023-04-27 15:52:26 +00:00
|
|
|
{ "requiredrsasize", sRequiredRSASize, SSHCFG_ALL },
|
2022-09-29 13:42:34 +00:00
|
|
|
+ { "rsaminsize", sRequiredRSASize, SSHCFG_ALL }, /* alias */
|
2023-04-27 15:52:26 +00:00
|
|
|
{ "channeltimeout", sChannelTimeout, SSHCFG_ALL },
|
|
|
|
{ "unusedconnectiontimeout", sUnusedConnectionTimeout, SSHCFG_ALL },
|
2022-08-10 13:08:21 +00:00
|
|
|
{ NULL, sBadOption, 0 }
|