{% extends "base.html" %} {% block title %}Manage User Certificate and Keys{% endblock title %} {% block content %}

Manage user {{ curr_user.username }}'s certificate

{% if cert %} {% if cert.parent %} {% else %} {% endif %}
Uniform Resource Name (URN){{ cert.get_urn }}
Human Readable Name (HRN){{ cert.get_hrn }}
Issuer URN{{ cert.parent.get_urn }}
Issuer HRN{{ cert.parent.get_hrn }}
Issuer URNself
Issuer HRNself
Valid Not Before{{ cert.get_notBefore }}
Valid Not After{{ cert.get_notAfter }}
{% else %}

This user currently has no GENI user certificates. Click "Generate" below to create a new one.

{% endif %}
{% if cert %}

Your certificate:

Your certificate key: Private key associated with your certificate is not stored on server. Private key is made available for download only once when the certificate is generated. You may regenerate your certificate to get a new pair of certificate and key.

{% else %} {% endif %} {% comment %} {% endcomment %}

Manage user {{ curr_user.username }}'s SSH keys

Public SSH key:

Private SSH key: Private SSH key is not stored on server. Private key is made available for download only once when the SSH key pair is generated. You may regenerate a new pair of SSH keys.

{% endblock content %}