5903022f8a
Introduces encrypted private key storage for nodes and users, updates chat message schema to support sender-side encryption, and adds supporting libraries and tests for cryptographic signing and identity unlock flows. Includes new database migrations, API route updates, and React components for identity unlock prompts.
3 lines
138 B
SQL
3 lines
138 B
SQL
-- Add private_key_encrypted column to nodes table for cryptographic signing
|
|
ALTER TABLE "nodes" ADD COLUMN "private_key_encrypted" text;
|