{% extends "base.html" %}
{% block title %}Keys & Certificates - NanoIDP{% endblock %}
{% block content %}
Keys & Certificates
| Key ID (KID) |
{{ kid }} |
| Algorithm |
RS256 |
| Key Size |
2048 bits |
{% if key_created %}
| Created |
{{ key_created }} |
{% endif %}
| Keys Directory |
{{ keys_dir }} |
{% if previous_keys %}
| Key ID (KID) |
Created |
Status |
{% for key in previous_keys %}
{{ key.kid }} |
{{ key.created_at }} |
Retired (validation only) |
{% endfor %}
{% 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 %}