Add encrypted key support for chat and nodes

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.
This commit is contained in:
Christopher
2026-01-27 17:13:28 -08:00
parent 25f71e320b
commit 5903022f8a
46 changed files with 7457 additions and 113 deletions
+27
View File
@@ -207,6 +207,33 @@ export async function authenticateUser(
await db.update(users)
.set({ privateKeyEncrypted: serializeEncryptedKey(encryptedPrivateKey) })
.where(eq(users.id, user.id));
// Update local object
user.privateKeyEncrypted = serializeEncryptedKey(encryptedPrivateKey);
}
// MIGRATION: Check if user has legacy RSA key (upgrade to ECDSA P-256)
// RSA 2048 SPKI PEM is ~450 chars, ECDSA P-256 is ~178 chars.
if (user.publicKey.length > 300) {
console.log(`[Auth] Migrating user ${user.handle} from RSA to ECDSA P-256`);
// Generate new ECDSA key pair
const { publicKey, privateKey } = await generateKeyPair();
// Encrypt new private key
const encryptedPrivateKey = encryptPrivateKey(privateKey, password);
// Update DB
await db.update(users)
.set({
publicKey: publicKey,
privateKeyEncrypted: serializeEncryptedKey(encryptedPrivateKey)
})
.where(eq(users.id, user.id));
// Update local user object to return new keys
user.publicKey = publicKey;
user.privateKeyEncrypted = serializeEncryptedKey(encryptedPrivateKey);
}
return user;