Re: how to configurate CEF to use tls 1.1
Posted: Thu Jun 07, 2018 7:44 am
Try these switches :
If I'm not mistaken the possible values are "tls1", "tls1.1", "tls1.2", or "tls1.3", but TLS1.3 is not currently supported :
http://magpcss.org/ceforum/viewtopic.php?f=6&t=15972
Read this for more information about switches :
https://peter.sh/experiments/chromium-c ... -switches/
- --ssl-version-max
- --ssl-version-min
Code: Select all
GlobalCEFApp.AddCustomCommandLine('--ssl-version-max', 'tls1.1');
GlobalCEFApp.AddCustomCommandLine('--ssl-version-min', 'tls1');
http://magpcss.org/ceforum/viewtopic.php?f=6&t=15972
Read this for more information about switches :
https://peter.sh/experiments/chromium-c ... -switches/