Skip to content

Commit

Permalink
Add aes-128-cbc as additional cipher option
Browse files Browse the repository at this point in the history
  • Loading branch information
qdm12 committed Aug 13, 2022
1 parent 52121dd commit 5005f10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/provider/vpnsecure/openvpnconf.go
Expand Up @@ -14,7 +14,8 @@ func (p *Provider) OpenVPNConfig(connection models.Connection,
RemoteCertTLS: true,
AuthUserPass: true,
Ping: 10,
Ciphers: []string{openvpn.AES256cbc},
// note DES-CBC is not added since it's quite unsecure
Ciphers: []string{openvpn.AES256cbc, openvpn.AES128cbc},
ExtraLines: []string{
"comp-lzo",
"float",
Expand Down

0 comments on commit 5005f10

Please sign in to comment.