beszel / src /internal /common /common-ssh.go
cacodex's picture
Deploy Beszel hub with ephemeral Space recovery
3959f31 verified
Raw
History Blame Contribute Delete
279 Bytes
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"}
)