diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2021-01-13 13:11:11 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2021-01-13 14:55:18 +0100 |
| commit | aa7839aadce135a0c4742f58394276ecbb640c6b (patch) | |
| tree | a024e094ee182a6472e14cfbcbe5019cb4ff2028 | |
| parent | e63fa394ed360a7a5dd8927598426e825c9dcf4c (diff) | |
| download | mullvadvpn-aa7839aadce135a0c4742f58394276ecbb640c6b.tar.xz mullvadvpn-aa7839aadce135a0c4742f58394276ecbb640c6b.zip | |
Fix issue with --cipher argument
| -rw-r--r-- | talpid-core/src/process/openvpn.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/talpid-core/src/process/openvpn.rs b/talpid-core/src/process/openvpn.rs index de5206a56b..7a469ab345 100644 --- a/talpid-core/src/process/openvpn.rs +++ b/talpid-core/src/process/openvpn.rs @@ -29,7 +29,7 @@ static BASE_ARGUMENTS: &[&[&str]] = &[ &["--rcvbuf", "1048576"], &["--sndbuf", "1048576"], &["--fast-io"], - &["--cipher", "AES-256-CBC"], + &["--data-ciphers-fallback", "AES-256-GCM"], &["--tls-version-min", "1.3"], &["--verb", "3"], #[cfg(windows)] |
