A beautifully crafted, offline-first secure vault and WebRTC communication app. Built with uncompromising privacy, featuring End-to-End Encryption and 100% self-hosted infrastructure.
Get StartedIn an era of data mining and server-side tracking, true privacy is hard to find. We built Enclave to be an impenetrable digital space—a sanctuary for intimate communications.
By utilizing the Signal Protocol for messaging, WebRTC for peer-to-peer video, and Ntfy for private push notifications, Enclave guarantees that no third party—not even us—can access your data. Your keys stay on your device, protected by Biometric Keystores.
Every message, photo, and video call is encrypted locally using the Signal Protocol before it ever leaves your device.
High-quality, low-latency video and audio calls routed directly between devices via self-hosted TURN servers.
Zero reliance on Google FCM or Apple APNs. Background sync runs through your own secure WebSockets.
Hide your photos and videos behind an AES-GCM encrypted local vault, accessible only via Biometrics.
A stunning, dynamic interface built in Jetpack Compose, featuring smooth blurs and micro-animations.
Deploy the Node.js signaling server and PostgreSQL database on your own VPS. You own the entire stack.
git clone https://github.com/saifmukhtar/enclave.git
cd enclave
Deploy the backend services on your VPS. We recommend Ubuntu 24.04.
cd enclave-server
chmod +x setup_coturn.sh
sudo ./setup_coturn.sh
npm install
npm run start
Create a local.properties file in the enclave-ui directory and configure your server IP and credentials.
SUPABASE_URL=https://your-supabase-url.supabase.co
SUPABASE_KEY=your-anon-key
SIGNALING_SERVER_URL=ws://your-vps-ip:3000
NTFY_SERVER_URL=https://ntfy.sh
Build the signed release APK.
cd enclave-ui
./gradlew assembleRelease