{% extends "base.html" %} {% block title %}Keys — FieldWitness{% endblock %} {% block content %}

Key Management

Manage Stego channel keys and Attest Ed25519 identity.

{# Channel Key #}
Channel Key
{% if keystore.has_channel_key %}

Fingerprint: {{ keystore.channel_fingerprint }}
Used for Stego deployment isolation.

{% else %}

No channel key configured.

{% endif %}
{# Ed25519 Identity #}
Identity
{% if keystore.has_identity %}

Fingerprint: {{ keystore.identity_fingerprint }}
Used for Attest attestation signing.

{% else %}

No identity configured.

{% endif %}
{% endblock %}