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
@@ -2,12 +2,15 @@
* Swarm Mention Endpoint
*
* POST: Receive a mention notification from another swarm node
*
* SECURITY: All requests must be cryptographically signed by the sender.
*/
import { NextRequest, NextResponse } from 'next/server';
import { db, users, notifications } from '@/db';
import { eq } from 'drizzle-orm';
import { z } from 'zod';
import { verifyUserInteraction } from '@/lib/swarm/signature';
const swarmMentionSchema = z.object({
mentionedHandle: z.string(),
@@ -21,6 +24,7 @@ const swarmMentionSchema = z.object({
interactionId: z.string(),
timestamp: z.string(),
}),
signature: z.string(),
});
/**
@@ -37,6 +41,20 @@ export async function POST(request: NextRequest) {
const body = await request.json();
const data = swarmMentionSchema.parse(body);
// SECURITY: Verify the signature
const { signature, ...payload } = data;
const isValid = await verifyUserInteraction(
payload,
signature,
data.mention.actorHandle,
data.mention.actorNodeDomain
);
if (!isValid) {
console.warn(`[Swarm] Invalid signature for mention from ${data.mention.actorHandle}@${data.mention.actorNodeDomain}`);
return NextResponse.json({ error: 'Invalid signature' }, { status: 403 });
}
// Find the mentioned user (local user)
const mentionedUser = await db.query.users.findFirst({
where: eq(users.handle, data.mentionedHandle.toLowerCase()),