mirror of
https://github.com/fankes/beszel.git
synced 2025-10-19 01:39:34 +08:00
11 lines
269 B
Go
11 lines
269 B
Go
package common
|
|
|
|
var (
|
|
// Allowed ssh key exchanges
|
|
DefaultKeyExchanges = []string{"curve25519-sha256"}
|
|
// Allowed ssh macs
|
|
DefaultMACs = []string{"hmac-sha2-256-etm@openssh.com"}
|
|
// Allowed ssh ciphers
|
|
DefaultCiphers = []string{"chacha20-poly1305@openssh.com"}
|
|
)
|