Digitalix...
Blob Background


Etape 1 . Créer son CSR sous Linux (avec openssl)

Utilisez la commande OpenSSL pour générer à la fois votre clef privée et votre CSR. Attention : Votre CSR doit étre généré avec au minimum 2048 bits.

Commande shell :

openssl req -newkey rsa:2048 -new -nodes -keyout myprivate.key -out myserver.csr

Etape 2 . Vous allez alors obtenir ceci : (Ne specifiez pas de mot de passe)

Résultat :

Generating a 2048 bit RSA private key
............................................................+++
.........................................+++
writing new private key to 'myserver.key'
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [XX]:FR
State or Province Name (full name) []:Province
Locality Name (eg, city) [Default City]:Paris
Organization Name (eg, company) [Default Company Ltd]:Digitalix
Organizational Unit Name (eg, section) []:Security Section
Common Name (eg, your name or your server's hostname) []:www.digitalix.fr
Email Address []:support@digitalix.fr

Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:

Etape 3 . Editer le fichier 'myserver.csr' pour récuperer votre CSR.

Blob Background


Etape 1 . Créer son CSR sous Microsoft IIS 5.x / 6.x

Generating an IIS SSL Certificate Signing Request (CSR) using Microsoft IIS 5.x / 6.x A CSR is a file containing your IIS SSL certificate application information, including your Public Key. Generate your CSR and then copy and paste the CSR file into the webform in the enrollment process: Generate keys and Certificate Signing Request: Select Administrative Tools Start Internet Services Manager

Commande shell :

openssl req -newkey rsa:2048 -new -nodes -keyout myprivate.key -out myserver.csr

Etape 2 . Vous allez alors obtenir ceci : (Ne specifiez pas de mot de passe)

Résultat :

Generating a 2048 bit RSA private key
............................................................+++
.........................................+++
writing new private key to 'myserver.key'
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [XX]:FR
State or Province Name (full name) []:Province
Locality Name (eg, city) [Default City]:Paris
Organization Name (eg, company) [Default Company Ltd]:Digitalix
Organizational Unit Name (eg, section) []:Security Section
Common Name (eg, your name or your server's hostname) []:www.digitalix.fr
Email Address []:support@digitalix.fr

Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:

Etape 3 . Editer le fichier 'myserver.csr' pour récuperer votre CSR.