Create CSR
This tool creates a private key and a CSR.
You can use the tool for the following purpose:
- Create private key and CSR for ordering a new SSL certificate
Enter data for your SSL certificate (the following content is an example)

(Creating a random key takes a while...)
(Certificate Signing Request)
(Certificate Signing Request)
(Just finishing last touches)
(This may be due to high load on server, please wait...)
The small print
Use of this tool is at your own risk and it is provided only for your ease of use. We do best effort to secure the server and it's data, but history shows that no computer system remains secure for ever. We highly recommend creating private keys and certificates locally on the computer that uses them for the best level of security.
If you want to create a CSR or a self-issued SSL certificate on your local computer, you can use the free OpenSSL tool with the following commands:
New private key + CSR: openssl req -out toca.csr -new -newkey rsa:2048 -nodes -keyout myprivate.key
New private key + Self Issued SSL: openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout myprivate.key out selfsigned.pem