Generate a private and public key,cer and pfx file using OpenSSL
1.Download Open SSL 2.To run the commands below, go to the OpenSSL32 directory on your PC, and change to the /bin directory. 3.The basics command line steps to generate a private and public key using OpenSSL are as follows openssl genrsa -out privatekey.pem 1024 openssl req -new -x509 -key privatekey.pem -out publickey.cer -days 1825 openssl… Read More »