Wiki source code of OpenSSL
Version 4.1 by Erik Bakker on 2024/03/19 14:47
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{container}}{{container layoutStyle="columns"}}((( | ||
2 | On this page you will find the information needed for OpenSSL. | ||
3 | |||
4 | Should you have any questions, please contact [[academy@emagiz.com>>mailto:academy@emagiz.com]]. | ||
5 | |||
6 | === 1. Information === | ||
7 | |||
8 | Below, the steps taken are explained. | ||
9 | |||
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: | ||
15 | openssl s_client -connect <hostname>:<port> -t Isl 2 | ||
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: | ||
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. | ||
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 | For additional options and details, refer to the official OpenSSL documentation.{{/info}} | ||
25 | |||
26 | |||
27 | )))((({{toc/}}))){{/container}}{{/container}} |