{% extends "base.html" %} {% block title %}Keys & Certificates - NanoIDP{% endblock %} {% block content %}

Keys & Certificates

Active Key
{% if key_created %} {% endif %}
Key ID (KID) {{ kid }}
Algorithm RS256
Key Size 2048 bits
Created {{ key_created }}
Keys Directory {{ keys_dir }}
Related Endpoints
Public Key
{{ public_key_pem }}
X.509 Certificate
{{ certificate_pem }}
{% if previous_keys %}
Previous Keys (for token validation) max {{ max_previous_keys }} keys retained
{% for key in previous_keys %} {% endfor %}
Key ID (KID) Created Status
{{ key.kid }} {{ key.created_at }} Retired (validation only)
{% endif %}
Warning: Regenerating keys will rotate the active key. Previous keys remain valid for token validation until they age out (max {{ max_previous_keys }} retained).
{% endblock %} {% block extra_js %} {% endblock %}