dabark
dabark

Reputation: 33

What is the TLS 1.3 Flag for DefaultSecureProtocols?

Microsoft article "How to enable TLS 1.2 on client" tells us to use the flag 0x00000800 in DefaultSecureProtocols under HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp and HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp as part of enabling TLS 1.2.

What is the flag for TLS 1.3?

The pattern in Microsoft article "Update to enable TLS 1.1 and TLS 1.2 as default secure protocols in WinHTTP in Windows", illustrated below, implies that the flag would be 0x00002000. However, I have not found documentation on this.

DefaultSecureProtocols Value Protocol enabled
0x00000008 Enable SSL 2.0 by default
0x00000020 Enable SSL 3.0 by default
0x00000080 Enable TLS 1.0 by default
0x00000200 Enable TLS 1.1 by default
0x00000800 Enable TLS 1.2 by default

Upvotes: 0

Views: 1242

Answers (1)

Seb
Seb

Reputation: 1

The value for TLS 1.3 = 0x00002000

Upvotes: 0

Related Questions