Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to enable TLS 1.3 in windows 10

how to enable TLS 1.3 in windows 10

like image 691
JohnMathew Avatar asked May 10 '19 07:05

JohnMathew


People also ask

How do I get TLS 1.3 on Windows 10?

Press Windows key + R to open a Run box, type control and press Enter. Find Internet Properties and open the dialogue. On the Advanced tab, scroll down to the Security section and select TLS 1.2 and TLS 1.3.

Is TLS 1.3 available?

Since its initial definition in January 1999, Transport Layer Security has gone through a series of updates. The most recent, TLS 1.3, was released in August 2018.


1 Answers

Native SChannel implementation on Windows 10 and Windows 10 Server version 1903 (May 2019 Update) and newer supports TLS 1.3.

This is how you can enable it using registry for the client:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Client]
"DisabledByDefault"=dword:00000000 
"Enabled"=dword:00000001

This is how you can enable it using registry for the server:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Server]
"DisabledByDefault"=dword:00000000 
"Enabled"=dword:00000001

Bear in mind that this will have no effect on any versions of Windows prior to 1903.

like image 89
Igor Levicki Avatar answered Sep 27 '22 19:09

Igor Levicki