feat(server): implement KeyStorage and state machine lifecycle

This commit is contained in:
2026-02-16 15:57:14 +01:00
committed by hdbg
parent f108e64d13
commit 19f19a56e5
6 changed files with 213 additions and 7 deletions

View File

@@ -0,0 +1,2 @@
-- Remove argon2_salt column
ALTER TABLE aead_encrypted DROP COLUMN argon2_salt;

View File

@@ -0,0 +1,2 @@
-- Add argon2_salt column to store password derivation salt
ALTER TABLE aead_encrypted ADD COLUMN argon2_salt TEXT;