OnWorks Linux and Windows Online WorkStations

Logo

Free Hosting Online for WorkStations

< Previous | Contents | Next >

5.2. Generating a Certificate Signing Request (CSR)‌


Whether you are getting a certificate from a CA or generating your own self-signed certificate, the first step is to generate a key.


If the certificate will be used by service daemons, such as Apache, Postfix, Dovecot, etc., a key without a passphrase is often appropriate. Not having a passphrase allows the services to start without manual intervention, usually the preferred way to start a daemon.


This section will cover generating a key with a passphrase, and one without. The non-passphrase key will then be used to generate a certificate that can be used with various service daemons.


image

Running your secure service without a passphrase is convenient because you will not need to enter the passphrase every time you start your secure service. But it is insecure and a compromise of the key means a compromise of the server as well.


To generate the keys for the Certificate Signing Request (CSR) run the following command from a terminal prompt:


openssl genrsa -des3 -out server.key 2048


Generating RSA private key, 2048 bit long modulus

..........................++++++

.......++++++

e is 65537 (0x10001)

Enter pass phrase for server.key:


You can now enter your passphrase. For best security, it should at least contain eight characters. The minimum length when specifying -des3 is four characters. It should include numbers and/or punctuation and not be a word in a dictionary. Also remember that your passphrase is case-sensitive.


Re-type the passphrase to verify. Once you have re-typed it correctly, the server key is generated and stored in the server.key file.


Now create the insecure key, the one without a passphrase, and shuffle the key names:


openssl rsa -in server.key -out server.key.insecure mv server.key server.key.secure

mv server.key.insecure server.key


The insecure key is now named server.key, and you can use this file to generate the CSR without passphrase. To create the CSR, run the following command at a terminal prompt:


openssl req -new -key server.key -out server.csr


It will prompt you enter the passphrase. If you enter the correct passphrase, it will prompt you to enter Company Name, Site Name, Email Id, etc. Once you enter all these details, your CSR will be created and it will be stored in the server.csr file.


You can now submit this CSR file to a CA for processing. The CA will use this CSR file and issue the certificate. On the other hand, you can create self-signed certificate using this CSR.


Top OS Cloud Computing at OnWorks: