This setup was initially setup for windows to linux system, however, it can be adapted for a total linux or total windows environment easily. Download the files from gnupg.org. In the case of windows, you can download the binary for windows. For windows, you’ll need an integrity checker to verify the CRC. You can grab…
Author: a blogger
SSH Keys between Windows and Linux
Contents Use the Open SSH client key generation utility Generate a key pair with a default name and location Convert the Key(s) Create SSH Tunnel with putty Use the Open SSH client key generation utility Use the Open SSH key generation utility to generate a key pair and convert the public key to the proper…
SSL Certificate Creation
SSL Certificates are used in a number of areas for securing communications between web servers, email clients, etc. Listed below are the steps to go through to generate an SSL Certificate. For this example, we’ll use Apache web Server cd /etc/apache2 mkdir ssl cd ssl openssl genrsa -out ssl.key 2048 (choose a pass phrase) ..#…