Wiki source code of OpenSSL

Version 4.1 by Erik Bakker on 2024/03/19 14:47

Hide last authors
Eva Torken 1.1 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
Erik Bakker 3.1 10 {{info}}To verify if an endpoint supports TLS version 1.2 or TLS version 1.3 using OpenSSL on Windows, follow these steps:
Eva Torken 1.1 11 1. Open a Command Prompt or PowerShell window:
Erik Bakker 4.1 12 * Press Win + R, type cmd or powershell, and hit Enter.
Eva Torken 1.1 13 2. Test TLS 1.2 Support:
Erik Bakker 4.1 14 * Run the following command to check if the endpoint supports TLS 1.2:
Eva Torken 1.1 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:
Erik Bakker 4.1 18 * Similarly, use the following command to verify TLS 1.3 support:
Eva Torken 1.1 19 openssl s_client -connect <hostname>:<port> -t1s1_3
20 4. Interpreting the Results:
Erik Bakker 4.1 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.
Eva Torken 1.1 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}}