summaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2023-06-05 16:21:31 +0300
committerPaul Buetow <pbuetow@mimecast.com>2023-06-05 16:21:31 +0300
commita3bb8a44a6ba6f7184e8ce2f5bd16a69162794f1 (patch)
treec7e3fe60821935fd88cf3bcaec3055b58cff07f7 /internal/config
parent3c9e5c71d30209b415df9c0d7149da2c3a923c7a (diff)
can configure SSH algorithms
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/server.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/config/server.go b/internal/config/server.go
index 4c96567..cb9ca2b 100644
--- a/internal/config/server.go
+++ b/internal/config/server.go
@@ -61,6 +61,12 @@ type ServerConfig struct {
Schedule []Scheduled `json:",omitempty"`
// Continuous mapreduce jobs
Continuous []Continuous `json:",omitempty"`
+ // The allowed key exchanges algorithms.
+ KeyExchanges []string `json:",omitempty"`
+ // The allowed cipher algorithms.
+ Ciphers []string `json:",omitempty"`
+ // The allowed MAC algorithms.
+ MACs []string `json:",omitempty"`
}
// Create a new default server configuration.