Note |
---|
AUTOSOL does not provide this information for use as a source of security advice or best practices. The use of these examples is done at your own discretion and risk and with agreement that you will be solely responsible for any damage to your computer system or loss of data that results from such activities. |
OpenSSL
You should always check with your IT/Security department before compiling or installing any Open Source software.
Windows:
If it isn’t already installed, download Download and install OpenSSL (https://wiki.openssl.org/index.php/Binaries) . *You should always check with your IT/Security department before compiling or installing any Open Source software. Once openssl, is installed you can create your certificate chainif it isn’t already.
Linux
To verify OpenSSL must be is installed and in your system PATH . For in Debian Linux, you may check to see if openssl is installed and on your PATH using the which
use the “which” command: $ openssl which
Where the expected output is the file path where openssl is installed. Example:
$ which openssl
.
If a file path is returned, it is the location where OpenSSL is installed
/usr/bin/openssl
If
...
nothing is returned, OpenSSL is not installed
...
. OpenSSL can be installed using the package manager
...
in Debian
sudo apt-get update && sudo apt-get install
...
openssl
...