Cut over to new decryption lib version and provide channel crack streaming updates

This commit is contained in:
Jack Kingsman
2026-01-08 18:52:24 -08:00
parent c739d536ec
commit 9d8229c7be
11 changed files with 583 additions and 740766 deletions
+16
View File
@@ -79,6 +79,22 @@ async def create_message_from_decrypted(
# Mark the raw packet as decrypted
await RawPacketRepository.mark_decrypted(packet_id, msg_id)
# Broadcast new message to connected clients (for historical decryption visibility)
broadcast_event("message", {
"id": msg_id,
"type": "CHAN",
"conversation_key": channel_key.upper(),
"text": text,
"sender_timestamp": timestamp,
"received_at": received,
"path_len": None,
"txt_type": 0,
"signature": None,
"outgoing": False,
"acked": False,
})
return msg_id