{% extends 'owlca/base.html' %} {% load crispy_forms_tags %} {% block content %}

Create Certificate Signing Request

Request a certificate from {{ certificationauthority.title }}:

{{ certificationauthority.comment }}

Option A: Create CSR in your browser

Loading helper...

Option B: Create CSR manually

1. Create key and CSR

Generate a new private key and create a certificate signing request (CSR). For example, execute the following command and enter the prompted information.

openssl genrsa -aes256 -out key.pem 2048
openssl req -new -key key.pem -out csr.pem

Keep the file key.pem safe and secure

2. Submit CSR

Upload the certificate signing request in PEM format.

{% csrf_token %} {{ form|crispy }}
{% endblock %}