 |
OpenSSL is commercial grade, open source, toolkit that
implements Secure Socket Layer and Transport Layer Security
This page will walk you through installing OpenSSL on your
computer.
Open SSL readme file
-
You will first need to download the
source code.
-
Now, move the file that you just downloaded to a
system-wide directory by typing:
mv openssl-0.9.6b.tar.gz
/usr/local/src/.
-
You will now need to su to root on your
computer with your root password.
-
Next, change directory to the system-wide source code
directory with the following command:
cd /usr/local/src
-
Now, to uncompress and unpack the source code, use the
following command:
tar zxvf
openssl-0.9.6b.tar.gz
-
Now, change directory into the source code by typing:
cd openssl-0.9.6b/
-
The first step now is to run the configuration script. This
can be simply done by:
./config
-
To compile the source code, you will need to type:
make
Note: This process will probably take a while depending on
the speed of your computer.
-
You need to test the encryption capabilities by issuing the
following command:
make test
-
Once your code has been compiled, to install it on your
system, issue the following command:
make install
-
Once your application has been installed, you may wish to
remove temporary files that were created by the compiler to
save yourself disk space. This can be done with:
make clean
|