Core: - paths.py: centralized ~/.soosef/ path constants - config.py: JSON config loader with dataclass defaults - exceptions.py: SoosefError hierarchy - cli.py: unified Click CLI wrapping stegasoo + verisoo + native commands Keystore: - manager.py: unified key management (Ed25519 identity + channel keys) - models.py: IdentityInfo, KeystoreStatus dataclasses - export.py: encrypted key bundle export/import for USB transfer Fieldkit: - killswitch.py: ordered emergency data destruction (keys first) - deadman.py: dead man's switch with check-in timer - tamper.py: SHA-256 file integrity baseline + checking - usb_monitor.py: pyudev USB whitelist enforcement - geofence.py: haversine-based GPS boundary checking Web frontend (Flask app factory + blueprints): - app.py: create_app() factory with context processor - blueprints: stego, attest, fieldkit, keys, admin - templates: base.html (dark theme, unified nav), dashboard, all section pages - static: CSS, favicon Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
53 lines
2.2 KiB
HTML
53 lines
2.2 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Keys — SooSeF{% endblock %}
|
|
{% block content %}
|
|
<h2><i class="bi bi-key me-2"></i>Key Management</h2>
|
|
<p class="text-muted">Manage Stegasoo channel keys and Verisoo Ed25519 identity.</p>
|
|
|
|
<div class="row g-4">
|
|
{# Channel Key #}
|
|
<div class="col-md-6">
|
|
<div class="card bg-dark border-secondary">
|
|
<div class="card-body">
|
|
<h5 class="card-title"><i class="bi bi-shield-lock me-2 text-warning"></i>Channel Key</h5>
|
|
{% if keystore.has_channel_key %}
|
|
<p class="text-muted small">
|
|
Fingerprint: <code>{{ keystore.channel_fingerprint }}</code><br>
|
|
Used for Stegasoo deployment isolation.
|
|
</p>
|
|
{% else %}
|
|
<p class="text-muted small">No channel key configured.</p>
|
|
<form method="POST" action="{{ url_for('keys.generate_channel') }}">
|
|
<button type="submit" class="btn btn-outline-warning btn-sm">
|
|
<i class="bi bi-plus-circle me-1"></i>Generate Channel Key
|
|
</button>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{# Ed25519 Identity #}
|
|
<div class="col-md-6">
|
|
<div class="card bg-dark border-secondary">
|
|
<div class="card-body">
|
|
<h5 class="card-title"><i class="bi bi-fingerprint me-2 text-info"></i>Identity</h5>
|
|
{% if keystore.has_identity %}
|
|
<p class="text-muted small">
|
|
Fingerprint: <code>{{ keystore.identity_fingerprint }}</code><br>
|
|
Used for Verisoo attestation signing.
|
|
</p>
|
|
{% else %}
|
|
<p class="text-muted small">No identity configured.</p>
|
|
<form method="POST" action="{{ url_for('keys.generate_identity') }}">
|
|
<button type="submit" class="btn btn-outline-info btn-sm">
|
|
<i class="bi bi-plus-circle me-1"></i>Generate Identity
|
|
</button>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|