{% extends "meta.html" %} {% block title %} Keys - meta.sr.ht {% endblock %} {% block content %}

SSH Keys

{% if any(current_user.ssh_keys) %}

The following SSH keys are associated with your account:

{% for key in current_user.ssh_keys %} {% endfor %}
Name Fingerprint Authorized Last Used
{{key.comment}} {{key.fingerprint}} {{key.created|date}} {{key.last_used|date}}
{{csrf_token()}}
{% endif %}
{{csrf_token()}}
{{valid.summary("ssh-key")}}

PGP Keys

{% if any(current_user.pgp_keys) %}

The following PGP keys are associated with your account:

{% for key in current_user.pgp_keys %} {% endfor %}
Email Key ID Authorized
{{key.email}} {{key.key_id}} {{key.created|date}}
{{csrf_token()}}
{% endif %}
{{csrf_token()}}
{{valid.summary("pgp-key")}}
{% endblock %}