second commit

This commit is contained in:
2026-08-19 22:33:19 +02:00
parent 411812e954
commit 199f306993
107 changed files with 5984 additions and 0 deletions

View File

@ -0,0 +1,7 @@
-- RDP-Zugangsdaten getrennt von SSH-Keys, ebenfalls AES-256-GCM-verschluesselt
-- (KEK, associated_data="rdp_password"). Ein Datensatz pro Host.
CREATE TABLE IF NOT EXISTS rdp_credentials (
host_id INTEGER PRIMARY KEY REFERENCES hosts(id) ON DELETE CASCADE,
password_enc BLOB NOT NULL,
updated_at TEXT NOT NULL DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ','now'))
);