Ĩesky | english


What is a "CSR" and how do I get one?

CSR is a Certificate Signing Request. It is a file with a special contents.

Basic overview

You have to create a CSR file on your computer (a PC or a server). You can use, for example, the following means:

/!\ NOTE on CSR generating in browsers since 20170101 - important! /!\

Programs generate both a private and a public PKI key. The private key stays saved on your computer (apart from exceptions, as backups). The public key with more information is saved to the CSR file, which represents the base for your new certificate. The CSR file is assembled, according to the certificate purpose intended, based on the pattern you have selected (e.g. a personal certificate or a web server certificate). The CSR file contains your generated public key with a part of information about the subject of your planned certificate and about your public key.

The CSR file (certificate signing request) then can be submitted to a CA or Certification Authority (here: CAcert Inc.), which signs the CSR with its (CA's) private key. By doing this, the CA creates your new certificate, which contains your public key and can also contain a part of CSR information. CAcert first modifies your CSR, see the Certification Practice Statement (CPS). Detailed tutorials see TutorialsHowto.

CA does not need to know the private key you have generated. Keep your private key secret.

CA (CAcert's CA) uses the CSR file to grab your information, check it against your web account at CAcert, and then to generate the real certificate you (and your services) will use at secured communication with your clients (HTTPS, SSL, POP3/SSL, etc.) and with servers.

Then you can download the certificate issued and save it as a file with one of CER, CRT, PEM or DER formats. First three formats are usually Base64 coded, DER is the binary format.

If you have used the Firefox browser to generate a CSR and save the certificate issued, then you have to realize, that Firefox has its own certificate repository; more steps are needed to save the certificate with the corresponding private key into the system certificate repository. This is discussed on the Wiki page Browser Clients.

(based on Bruno ideas on CAcert support mailing list)

Example of CSR

tools to generate CSRs

Analyse your CSR data block

see SSL Shopper or Symantec CryptoReport

More info

see here and there

Official OpenSSL stuff

You can get some more info reading the official OpenSSL documentation.

http://www.openssl.org/docs/


FAQ/CSR (last edited 2024-02-05 07:28:46 by KimNilsson)