{% extends 'generic/object_edit.html' %} {% load form_helpers %} {% load i18n %} {% block title %}Import CSR{% endblock %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content %}
Import CSR (Smart Paste)
{% csrf_token %}
Instructions
  • Paste your Certificate Signing Request (CSR) in PEM format below
  • CSRs contain only the public key - no private key data
  • Duplicate CSRs (same fingerprint) will be rejected
  • Optionally specify who requested this certificate and the target CA
{{ form.pem_content }} {% if form.pem_content.help_text %}
{{ form.pem_content.help_text }}
{% endif %} {% if form.pem_content.errors %}
{% for error in form.pem_content.errors %}{{ error }}{% endfor %}
{% endif %}
{{ form.requested_by }} {% if form.requested_by.help_text %}
{{ form.requested_by.help_text }}
{% endif %}
{{ form.target_ca }} {% if form.target_ca.help_text %}
{{ form.target_ca.help_text }}
{% endif %}
{{ form.tenant }} {% if form.tenant.help_text %}
{{ form.tenant.help_text }}
{% endif %}
Cancel
Example PEM Format
-----BEGIN CERTIFICATE REQUEST-----
MIICijCCAXICAQAwRTELMAkGA1UE...
(base64 encoded data)
...hvcNAQkOMTUwMzAJBgNVHRME
-----END CERTIFICATE REQUEST-----
About CSRs

A Certificate Signing Request (CSR) contains the public key and subject information that will be used by a Certificate Authority to issue a certificate. CSRs are generated by the server or client that needs the certificate.

Parsed Fields
  • Common Name (CN)
  • Organization (O)
  • Organizational Unit (OU)
  • Locality (L)
  • State/Province (ST)
  • Country (C)
  • Subject Alternative Names
  • Key Algorithm & Size
  • SHA256 Fingerprint
{% endblock content %}