fix(slickvpn): allow AES-256-GCM

This commit is contained in:
Quentin McGaw
2023-03-25 17:58:30 +00:00
parent 33a6f1c01b
commit 227cdea0c8

View File

@@ -15,6 +15,7 @@ func (p *Provider) OpenVPNConfig(connection models.Connection,
RemoteCertTLS: true, RemoteCertTLS: true,
AuthUserPass: true, AuthUserPass: true,
Ciphers: []string{ Ciphers: []string{
openvpn.AES256gcm,
openvpn.AES256cbc, openvpn.AES256cbc,
}, },
Ping: pingSeconds, Ping: pingSeconds,