Changes for page OpenSSL

Last modified by Erik Bakker on 2024/03/19 14:48

From version 4.1
edited by Erik Bakker
on 2024/03/19 14:47
Change comment: There is no comment for this version
To version 5.1
edited by Erik Bakker
on 2024/03/19 14:48
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -8,18 +8,19 @@
8 8  Below, the steps taken are explained.
9 9  
10 10  {{info}}To verify if an endpoint supports TLS version 1.2 or TLS version 1.3 using OpenSSL on Windows, follow these steps:
11 -1. Open a Command Prompt or PowerShell window:
12 -* Press Win + R, type cmd or powershell, and hit Enter.
13 -2. Test TLS 1.2 Support:
14 -* Run the following command to check if the endpoint supports TLS 1.2:
11 +* Open a Command Prompt or PowerShell window:
12 +** Press Win + R, type cmd or powershell, and hit Enter.
13 +* Test TLS 1.2 Support:
14 +** Run the following command to check if the endpoint supports TLS 1.2:
15 15  openssl s_client -connect <hostname>:<port> -t Isl 2
16 16  Replace with the actual hostname or IP address of the endpoint and <port> with the corresponding port (usually 443 for HTTPS).
17 -3. Test TLS 1.3 Support:
18 -* Similarly, use the following command to verify TLS 1.3 support:
17 +* Test TLS 1.3 Support:
18 +** Similarly, use the following command to verify TLS 1.3 support:
19 19  openssl s_client -connect <hostname>:<port> -t1s1_3
20 -4. Interpreting the Results:
21 -* If the handshake succeeds, the endpoint supports the specified TLS version.
22 -* If you encounter any errors or connection issues, it indicates that the endpoint does not support the requested TLS version.
20 +* Interpreting the Results:
21 +** If the handshake succeeds, the endpoint supports the specified TLS version.
22 +** If you encounter any errors or connection issues, it indicates that the endpoint does not support the requested TLS version.
23 +
23 23  Remember to replace and with the actual details of the endpoint you want to test. OpenSSL provides detailed output, including certificate information, cipher suites, and protocol versions.
24 24  For additional options and details, refer to the official OpenSSL documentation.{{/info}}
25 25