Show HN: Tlx β E2E chat over SSH under 500 lines of codehttps://github.com/achempion/tlx
This is a reference implementation of encrypted chats for small trusted groups. It runs SSH server in a container that acts as a mailbox for opaque encrypted blobs (145 lines of code). SSH keys serve as an identity. Then a local demon syncs and decrypts these blobs into SQLite database (321 lines of code). I wanted to make crypto as simple as possible and have only widely used and well audited components. Relay server and sync demon are implemented in standard Python without any extra dependencies. I've chosen Python as it ships with SQLite client in standard library. Could have used go/rust,β¦