Files
gluetun/internal/constants/openvpn/ciphers.go

9 lines
135 B
Go
Raw Normal View History

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