Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.

how to configurate CEF to use tls 1.1

Post Reply
User avatar
salvadordf
Posts: 4057
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: how to configurate CEF to use tls 1.1

Post 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/
Post Reply