From a3bb8a44a6ba6f7184e8ce2f5bd16a69162794f1 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 5 Jun 2023 16:21:31 +0300 Subject: can configure SSH algorithms --- internal/config/server.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'internal/config') 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. -- cgit v1.2.3