TransferDaemon v1.0.0
The world's first post-quantum secure, fully decentralized messaging and file-transfer platform.
What's New
- Post-quantum identity — Ed25519 + ML-DSA-87 hybrid (FIPS 204), BIP-39 recovery phrase
- Post-quantum key exchange — X25519 + ML-KEM-768 hybrid handshake with forward secrecy
- Decentralized relay mesh — embedded Kademlia DHT, volunteer relay nodes, zero-knowledge metadata protection
- P2P swarm distribution — BitTorrent-style piece-swarm lane (librqbit integration point ready)
- Android voice + video calls — Camera2 + AudioRecord JNI bridge, live video in egui overlay
- Terminal video calling — 4 adaptive backends: Kitty, Sixel, half-block Unicode, ASCII art
- Zero-copy DMI transfers — 100+ Gbps local transfers via mirrored hugepage ring buffer
- 133 tests, 0 failures across 15 crates
Downloads
| Platform | File | SHA256 |
|---|---|---|
| Android 7.0+ (arm64 / arm32 / x86_64) | TransferDaemon-1.0.0.apk | b5818ba3231aea0ebafb720a8948133c7d8e7ce36cbdecc6814cbc2c32d18398 |
| Windows 10/11 | Build from source — see README | — |
| Linux (Debian/Ubuntu) | Build from source — see README | — |
| macOS | Build from source — see README | — |
Security
All payloads are end-to-end encrypted with AES-256-GCM + BLAKE3. Relay nodes are cryptographically blind — they forward only random tokens and encrypted blobs, with zero knowledge of sender identity, recipient, or content. The relay network is fully optional; direct peer connections are always preferred.
Building from Source
git clone https://github.com/LoopyLuci/TransferDaemon.git
cd TransferDaemon/transferdaemon
cargo build --release -p transferd # daemon
cargo build --release -p transferd-ui # desktop GUI
cargo build --release -p transferd-tui # terminal UI
# Android APK: see build_apk_release.ps1