Page 1 of 1

Re: how to configurate CEF to use tls 1.1

Posted: Thu Jun 07, 2018 7:44 am
by salvadordf
Try these switches :
  • --ssl-version-max
  • --ssl-version-min
To select TLS 1.0 ~ TLS 1.1 you would have to add this code before the GlobalCEFApp.StartMainProcess call

Code: Select all

GlobalCEFApp.AddCustomCommandLine('--ssl-version-max', 'tls1.1');
GlobalCEFApp.AddCustomCommandLine('--ssl-version-min', 'tls1');
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/

Re: how to configurate CEF to use tls 1.1

Posted: Fri Jun 08, 2018 6:40 am
by salvadordf