-
Notifications
You must be signed in to change notification settings - Fork 1
Install OpenSSL Library
Per OpenSSL and IBM sources, OpenSSL is a robust, commercial-grade, and full-featured toolkit for the Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols. It is also a general-purpose cryptography library, which provides an encryption transport layer on top of the normal communications layer, allowing it to be intertwined with many network applications and services.
OpenSSL may be installed from various source, such as the official website, GitHub repository, or OpenSSL Wiki - Binary Distribution. In this page, Shining Light Productions will be leveraged, since the installer executable shields us from directly dealing with binaries.
-
Download proper OpenSSL installer. In this document, Win64 OpenSSL v1.1.1 installer will be downloaded.
-
Follow instructions, leave the default selections, and click multiple Next to complete the installation.
-
optional After installation, run Command Prompt as administrator.
-
optional Chanage directory to OpenSSL bin folder.
-
optional Run the following command to enter the interactive mode with an OpenSSL> prompt.
openssl
-
optional Run the following command to list all supported SSL/TLS ciphers.
ciphers
-
optional To exit OpenSSL prompt, run the following command.
exit
-
optional The same command ciphers within OpenSSL prompt in 7. may be executed outside prompt by running the following command.
openssl ciphers
-
optional For other common commands and usages, see Command Line Utilies wiki page.