Files
gluetun/internal/constants/openvpn/ciphers.go
2022-05-27 16:29:49 +00:00

9 lines
135 B
Go

package openvpn
const (
AES128cbc = "aes-128-cbc"
AES256cbc = "aes-256-cbc"
AES128gcm = "aes-128-gcm"
AES256gcm = "aes-256-gcm"
)