
Closed
Posted
Quero ter um chat para Android que garanta privacidade total entre dois usuários, rodando exclusivamente no meu servidor próprio. A ideia não é criar tudo do zero: posso aceitar código-base existente (como os repositórios que referenciei), desde que seja adaptado para ficar realmente seguro. Escopo desejado • Mensagens de texto em tempo real entre pares. • Compartilhamento de arquivos (imagens, PDFs e pequenos vídeos). • Sala protegida por senha única: só quem receber o convite e digitar a senha consegue entrar. • Tráfego ponta-a-ponta criptografado; nada em texto claro, nem em trânsito nem em repouso. • Backend instalável no meu servidor (PHP + MySQL, mas aceito outras stacks se trouxerem mais segurança). • Código comentado para que eu, que já programo em PHP, possa manter e evoluir. O que preciso de você 1. Avaliar as opções open-source indicadas ou sugerir alternativa sólida. 2. Configurar e adaptar o projeto para cumprir todos os requisitos acima. 3. Explicar como gerar chaves, configurar HTTPS e proteger as credenciais. 4. Entregar APK de teste, código-fonte organizado e instruções passo-a-passo de instalação no servidor. Critérios de aceitação • Login somente por senha definida por mim; sem registro público. • Teste demonstrando troca de mensagens e envio de arquivo com captura de tráfego provando a criptografia. • Script ou documento de instalação que eu consiga repetir em ambiente limpo. Se você domina segurança Android, criptografia (OpenSSL, libsodium ou similar) e integração backend, ficarei feliz em contar com sua ajuda para colocar este chat seguro no ar. Exemplos: [login to view URL] [login to view URL]
Project ID: 40399490
51 proposals
Remote project
Active 2 days ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
51 freelancers are bidding on average €9 EUR/hour for this job

With respect to your "Chat Android Criptografado Pessoal" project's unique demands, my team at Einnovention is more than ready to provide you with a robust and tailor-made solution. We are well-versed in open-source options and can evaluate the choices you've shared, or propose solid alternatives that prioritize your security needs. Given our extensive experience in Mobile App Development (including Android) and PHP programming, we have the expertise necessary to adapt existing codebases while assuring top-notch security. Ensuring complete privacy between users is a task we approach diligently. Our multi-layered encryption processes (OpenSSL, libsodium, and others) will guarantee a chat platform where no plaintext data is transmitted or stored. Moreover, our proficiency in backend integration (PHP/MYSQL or any stack of your choice) gives us an edge in crafting an installable server-side script while maintaining clean codes and comprehensive documentation. Our commitment towards transparency indicates that I’ll take you through every step of the server installation process, including generating keys, configuring HTTPS and safeguarding credentials. And even after delivery, our unparalleled customer support ensures I’m here for you throughout the implementation journey.
€9 EUR in 40 days
7.9
7.9

Hi there, I have read your project requirement. You need a secure Android chat application with end-to-end encryption, password-protected rooms, file sharing, and a self-hosted backend running on your own server, with fully documented and maintainable code. We can build/adapt a secure solution using a proven open-source base (or recommend a stronger alternative if needed), implementing true end-to-end encryption (libsodium/OpenSSL), secure key exchange, encrypted storage, and HTTPS/TLS configuration. The backend can be implemented in PHP + MySQL or a more secure stack (Node.js) depending on your preference. We will also provide full documentation, installation scripts, and a test APK with proof of encrypted communication. A few questions to clarify before proceeding: ==================================== Do you want strictly PHP-based backend or are you open to Node.js for better real-time + security handling? Should messages/files be stored encrypted on the server or fully ephemeral (auto-delete)? Do you need group chats later or strictly 1-to-1 communication for now? Any specific compliance/security standards you want to follow (e.g., GDPR-level practices)? Best Regards, Srashtasoft Team
€9 EUR in 40 days
7.1
7.1

Hi, We can build a fully private, end-to-end encrypted Android chat app running entirely on your own server, using a secure open-source base adapted to meet your requirements. What we’ll deliver • Real-time 1–1 messaging • File sharing (images, PDFs, small videos) • Password-protected rooms (invite + access control) • True end-to-end encryption (E2EE) — no plain text in transit or storage • Self-hosted backend (secure and configurable) Our approach • Evaluate and adapt a strong open-source base (e.g., PrivMX or similar) • Implement encryption using libsodium / OpenSSL • Secure backend setup (Node.js preferred, or hardened PHP if required) • Full HTTPS setup + secure key management • Clean, well-commented code for easy maintenance Deliverables • Test APK • Full source code (Android + backend) • Step-by-step server installation guide • Instructions for key generation, HTTPS, and credential protection • Encryption proof (traffic capture showing no plain text) Acceptance coverage ✔ Password-only access (no public registration) ✔ Fully encrypted messaging and file transfer ✔ Repeatable deployment on a clean server We have experience with secure mobile apps, encryption, and backend integration, and can deliver a reliable, privacy-focused solution ready for real-world use. Regards Interconnect Team
€9 EUR in 40 days
6.8
6.8

Your current architecture has a critical flaw - storing encrypted messages in MySQL without implementing perfect forward secrecy means a single server breach exposes your entire conversation history. If you're building this for actual privacy, we need to address key rotation and ephemeral session management before writing a single line of code. To ensure this doesn't become a security liability, I need clarity on two things: Are you expecting this to handle 10 concurrent users or 1000? The difference determines whether we use WebSocket polling or implement a message queue with Redis to prevent database bottlenecks during file transfers. What's your threat model - are you protecting against casual snooping or state-level adversaries? This changes whether we use AES-256-GCM with server-side key derivation or implement Signal Protocol with double ratchet encryption where even you can't decrypt messages. Here's the architectural approach: - ANDROID + LIBSODIUM: Implement X25519 key exchange with XSalsa20-Poly1305 authenticated encryption so messages are encrypted on-device before touching your server. No plaintext ever hits MySQL. - PHP BACKEND + NGINX: Configure TLS 1.3 with certificate pinning in the APK to prevent man-in-the-middle attacks. Add rate limiting to block brute-force attempts on room passwords. - MYSQL ENCRYPTION: Store message payloads as encrypted blobs with per-room derived keys. Implement automatic purging of messages older than 30 days to minimize exposure window. - FILE SHARING: Chunk large files and encrypt each segment separately with unique nonces. This prevents memory exhaustion attacks and ensures partial uploads don't leak metadata. - OPENSSH KEY MANAGEMENT: Generate server keypairs using ssh-keygen with ED25519, not RSA. Provide you with a secure bootstrap script that rotates keys every 90 days automatically. I've built 3 encrypted messaging systems for healthcare clients under HIPAA compliance where a single breach meant $50K fines. I don't take shortcuts on cryptography - if the GitHub repos you referenced have weak implementations, I'll tell you exactly why before we waste time adapting broken code. Let's schedule a 20-minute call to review your server specs and walk through the key exchange flow so you understand exactly what you're maintaining.
€9 EUR in 30 days
6.6
6.6

Hi I’ve worked on secure messaging systems where the real difficulty is not just real-time chat, but enforcing true end-to-end encryption while keeping a self-hosted backend fully under control. In setups like yours, the biggest technical risk is usually accidental plaintext leakage through logs, database writes, or improperly scoped API endpoints, even when encryption exists at app level. My approach is to base the system on a proven open-source chat core (such as Signal-inspired or Matrix-compatible components where appropriate) and then harden it specifically for single-server self-hosting. I would implement end-to-end encryption using libsodium or OpenSSL-based crypto, ensuring keys are generated and stored only on the client side, never on the server. For the backend, I can design a lightweight PHP + MySQL API layer (or suggest a Node/WebSocket alternative if needed for real-time reliability) that handles routing, room access, and file metadata without ever touching readable content. File sharing would be encrypted before upload and decrypted only on the recipient device, ensuring even your server only sees ciphertext blobs. I would also enforce strict access control with password-protected rooms, no public registration, and hardened HTTPS/TLS configuration with proper certificate management. The final result is a maintainable Android chat app + self-hosted backend where privacy is enforced by architecture, not trust. Thanks, Hercules
€15 EUR in 40 days
6.7
6.7

Olá! Com base na sua publicação sobre o projeto, percebi que você busca desenvolver um aplicativo de chat seguro para Android, focado na privacidade total entre dois usuários, aproveitando uma base de código existente e garantindo, ao mesmo tempo, uma forte criptografia de ponta a ponta e controle total por meio do seu próprio servidor. O objetivo é entregar um sistema confiável, seguro e de fácil manutenção, acompanhado de uma documentação clara para o desenvolvimento contínuo. Meu foco será avaliar e selecionar uma base de código open source robusta (ou propor uma alternativa superior) e, em seguida, adaptá-la para suportar: mensagens criptografadas em tempo real, compartilhamento seguro de arquivos (imagens, PDFs, vídeos curtos) e salas privadas protegidas por senha, sem a necessidade de cadastro público. Implementarei uma criptografia de ponta a ponta robusta utilizando bibliotecas comprovadas, assegurarei o armazenamento criptografado e configurarei um ambiente de backend seguro. Sou especialista no desenvolvimento de aplicativos seguros e focados na privacidade, com arquitetura clara e documentação amigável para desenvolvedores. Vamos nos conectar para avaliar a melhor solução de base e alinhar os detalhes do modelo de segurança. Atenciosamente, Nikita Gupta.
€10 EUR in 40 days
6.8
6.8

Olá! Tenho certeza de que poderei ajudá-lo(a) com seu aplicativo de bate-papo. Por favor, envie-me uma mensagem para que possamos discutir os detalhes técnicos. Tenho mais de 9 anos de experiência combinada em desenvolvimento de aplicativos móveis, desenvolvimento de websites, desenvolvimento de aplicativos desktop, APIs de Inteligência Artificial de terceiros, AR/VR, chatbots, blockchain e criptomoedas, CRM e ERP, desenvolvimento de jogos e outros tipos de desenvolvimento de software. Tenho experiência em desenvolvimento nativo para Android (Java, Kotlin) e iOS (Swift), além de desenvolvimento híbrido multiplataforma com Flutter (Dart) e React Native, Flutter Flow e Bubble.io. Para desenvolvimento web e backend, utilizo React JS e Node.js, Python (Django), Java (Spring Boot) e PHP (CodeIgniter MVC). Considere-me e inicie um bate-papo para discutirmos os detalhes. Atenciosamente, Anju
€9 EUR in 40 days
6.6
6.6

Olá, Desenvolverei seu APLICATIVO MÓVEL DE CHAT SEGURO para as plataformas Android e iOS, incluindo um painel administrativo web. Sou o Tulsiram. Tenho 10 anos de experiência atuando como desenvolvedor de aplicativos móveis, tanto nativos quanto multiplataforma. Compreendi seus requisitos e ficaria muito satisfeito em trabalharmos juntos. Se tiver interesse, vamos nos conectar. Fornecerei atualizações diárias, o código-fonte completo após a conclusão do desenvolvimento e 1 ano de suporte de manutenção, seguindo as etapas abaixo: Estarei disponível diariamente, de 10 a 12 horas por dia, durante os dias úteis para atendê-lo. Enviarei atualizações regulares de acordo com os módulos que definirmos em conjunto. Após a sua aprovação de cada módulo, entregarei o código-fonte completo do projeto e farei a migração para o seu domínio. Obrigado.
€6 EUR in 40 days
6.6
6.6

Hello There!!! ★★★★ (Secure Android chat with end-to-end encryption, private server backend + file sharing + password-only rooms) ★★★★ Project understanding: You need a secure Android chat app with E2E encryption, private server hosting, password-protected rooms, and file sharing. The system must avoid public registration, run on your own backend, and include full setup + encryption verification. Services: ⚜ Secure Android chat app development (real-time messaging) ⚜ End-to-end encryption implementation (OpenSSL / libsodium) ⚜ Private room system with password-based access only ⚜ File sharing support (images, PDFs, small videos) ⚜ PHP/MySQL backend setup or secure alternative architecture ⚜ Server deployment + HTTPS + key management setup ⚜ Clean documented source code + APK delivery I have worked on Android apps with secure API communication and encryption-based messaging flows, focusing on privacy-first design and backend hardening. I understand how to properly structure secure communication channels to avoid data leaks. I can also guide you step-by-step on hosting, certificates and crypto setup so you can maintain it easily later. Let’s connect and choose best repo base so we can make it fully secure and working fast ? Warm Regards, Farhin B.
€6 EUR in 40 days
6.7
6.7

Toriqul Global Solutions is a trusted web design and development company specializing in modern, high-performance, and user-friendly digital solutions. Founded by Engineer Md. Toriqul Islam, a Computer Science & Engineering graduate from RUET, we bring over 10+ years of industry experience in creating scalable, visually stunning, and business-focused websites. Our Expertise We provide complete full-stack web and mobile app development services with modern technologies, including: HTML5, CSS3, Bootstrap, JavaScript, jQuery, React JS, Angular JS, Node JS, PHP, Laravel, WordPress, .NET, Python, Ruby on Rails, MySQL, MongoDB, React Native, and more. Why Choose Us? ✔ Modern, clean, conversion-focused designs ✔ Fully responsive across all devices ✔ Scalable, secure, and optimized development ✔ Clean and maintainable code structure ✔ On-time delivery with strong commitment ✔ Professional communication & support ✔ 100% Client Satisfaction Priority We have successfully delivered projects for clients across multiple industries with excellent feedback and long-term relationships. Let’s build something exceptional together. Contact us today to turn your ideas into reality. Best Regards Toriqul Global Solutions
€10 EUR in 40 days
6.2
6.2

Hi, As per my understanding: You want a highly secure Android chat app for private communication between two users, fully hosted on your own server, leveraging an existing open-source base but upgraded to ensure true end-to-end encryption, secure file sharing, and password-protected access with no public registration. Implementation approach: I will first evaluate your referenced repos and likely recommend a more security-focused base (e.g., using libsodium-based encryption). The system will be adapted to ensure full end-to-end encryption (messages and files encrypted client-side before transmission). Backend will be deployed on your server (can use PHP + MySQL or suggest Node.js for better realtime handling), secured with HTTPS, proper key exchange, and no plaintext storage. I’ll implement password-protected rooms, secure key generation, and minimal metadata exposure. You’ll receive a test APK, fully commented code, and step-by-step deployment guide including SSL, key management, and credential protection. Timeline: 10–14 days. A few quick questions: 1. Are you open to switching backend from PHP to Node.js for better realtime performance? 2. Should messages be stored encrypted on server or auto-deleted after session? 3. Any preference for encryption standard (libsodium, Signal protocol, etc.)? 4. Expected file size limits for sharing? 5. Do you need group chat later or strictly 1-to-1?
€6 EUR in 40 days
5.4
5.4

Hey — this is doable, but I’d avoid patching a basic PHP chat like php-chat for security-critical use. It’s better to start from something designed with encryption in mind (like PrivMX) and adapt it to your requirements. I’d set this up with true end-to-end encryption using libsodium/OpenSSL (keys generated client-side, server only sees encrypted blobs), WebSocket-based realtime messaging, and a locked-down backend (can still expose a PHP layer if you want, but core messaging should be handled securely). Rooms would be invite + password protected, with no public registration and strict access control. File sharing would follow the same model — encrypted before upload, decrypted only on the recipient device. I’ll also configure HTTPS properly, key management, and harden the server so nothing leaks. You’ll get APK, clean source, and step-by-step install guide so you can redeploy it yourself. I’ll also include a simple way to verify encrypted traffic (so you can see nothing readable over the wire). Can get this running securely without overcomplicating things
€9 EUR in 40 days
4.6
4.6

I understand that confidentiality is paramount in building this encrypted chat app,and I have extensive experience in building secure systems. From generating keys to configuring HTTPS and safeguarding credentials,I will ensure every aspect adheres to high-security standards. Additionally, my sensitivity towards cybersecurity has led me to familiarize myself with technologies like OpenSSL and libsodium- ensuring that our conversations and files are never exposed anywhere along the communication channel. Finally I’ll provide a comprehensive testing that demonstrates message exchange and file transfer while providing you with captured traffic logs that showcase unequivocally the cryptographic protection in place. In conclusion, my ability to bring together multiple technical skills like Mobile App Development (specifically Android), MySQL,PHP including security alongside my previous thorough experience with encryption techniques makes me an ideal fit for your project. Protection is always key when handling sensitive data and that’s precisely what I propose: a fully-realized encrypted chat system personalized to meet all of your criteria installed seamlessly on your standalone server. Choose me for a result that upholds your privacy above all else!
€9 EUR in 40 days
4.1
4.1

With over six years of hands-on experience in full-stack and backend development, I am well-versed in transforming intricate ideas into highly functional web applications. Apart from specializing in PHP - which should come in handy for your personal server-oriented Android Chat project – I also have extensive expertise in delivering projects that align precisely with a client’s comprehensive specifications. A standout feature of my work is the conscious deliberation that underpins it. I don't just develop; I anticipate challenges, put structures in place to preempt them, and expeditiously resolve any that arise. As evidenced by my prior exposure to automating workflows and system integration, I understand the importance of streamlined processes that still preserve security and data privacy. In addition to my technical proficiency, another critical value I bring to the table is effective communication. For a project like this, it's necessary not only that the final product meets your security needs but also that you have an all-encompassing understanding of how it works so you can maintain and troubleshoot it yourself. With me, you'll be working with someone proficient enough to meet all your goals while also teaching you how it all works - securely! That way, even after completing the task, you'll still know exactly what's happening behind the scenes. Let’s make your private chat venture a resounding success together!
€9 EUR in 40 days
4.1
4.1

Dear Client, I’m an experienced full-stack developer with over 10 years of experience in web and mobile application development, specializing in building scalable, responsive, and high-performance solutions for diverse business needs. I understand you are looking for a reliable developer to build or improve your project, including web or mobile applications similar to CRM, dashboards, or APIs, and I have worked on similar solutions successfully. My skills in React, Vue, Laravel, PHP, Python, REST APIs, and database design ensure efficient and high-quality delivery. Feel free to share more details or ask questions. I’m ready to refine my approach to match your exact requirements. Looking forward to working with you. Best regards, Md Ruhul Ajom
€9 EUR in 40 days
5.6
5.6

Warm Hello! Podemos transformar esse chat Android em uma solução privada, com E2EE real e hospedada exclusivamente no seu servidor, usando base open-source adaptada e reforçada em segurança. Somos uma equipe de 62 profissionais com mais de 9 anos em desenvolvimento mobile, backend e criptografia aplicada. Here's how we can help: • Avaliar e adaptar repositórios como PrivMX Chatee e php-chat, ou sugerir stack mais segura (ex: Android + WebSocket + libsodium) • Implementar chat 1:1 com mensagens em tempo real, criptografia ponta-a-ponta e armazenamento seguro (sem texto claro) • Sistema de sala por senha única, sem registro público e acesso restrito por convite • Backend instalável no seu servidor (PHP/MySQL otimizado ou alternativa mais segura se necessário) • Integração de envio de arquivos (imagens, PDFs, vídeos leves) com criptografia antes do upload • Configuração completa de HTTPS, geração de chaves e proteção de credenciais • Entrega de APK de teste, código-fonte organizado e documentação passo-a-passo de instalação • Guia para você validar tráfego criptografado (Wireshark/testes de interceptação) Garantimos uma arquitetura onde nada trafega ou é armazenado em texto puro, com foco em privacidade real.
€9 EUR in 40 days
3.8
3.8

Hi there, I can help you build a secure, self-hosted Android chat with true end-to-end encryption while leveraging reliable open-source foundations instead of starting from scratch. Approach I’ll begin by evaluating your referenced repositories and comparing them with more robust, security-focused alternatives. Based on your requirements, I’ll likely adapt a proven E2EE protocol (such as Double Ratchet + libsodium) and integrate it into a lightweight Android client with a hardened backend. The system will be redesigned where needed to ensure zero plaintext exposure—both in transit and at rest. Implementation Plan • Customize Android client for real-time messaging + file sharing • Implement password-protected private rooms (invite-only access) • Integrate strong E2EE (client-side encryption, no server visibility) • Secure backend deployment (can remain PHP/MySQL or upgrade if needed) • Enforce HTTPS, key pinning, and secure credential handling • Add clean, well-commented code for maintainability Security Focus • Key generation via libsodium/OpenSSL (device-side) • Encrypted storage for messages/files • TLS + certificate hardening • No public registration or exposed endpoints Classification ✔ Private self-hosted architecture ✔ End-to-end encrypted communication ✔ Controlled access (password-based rooms) ✔ Maintainable PHP-friendly backend I’ll ensure the solution is practical, secure, and something you can confidently extend over time. Best regards, JP
€6 EUR in 40 days
3.7
3.7

Hello, I checked your project "Chat Android Criptografado Pessoal" and I already have a clear idea how to deliver this efficiently. I have solid experience in PHP, Mobile App Development, Android, Cryptography, MySQL, Software Development, OpenSSL, Backend Development, Encryption, Security, and I’ve worked on similar projects where I delivered high-quality, scalable, and clean solutions. Why choose me? • Strong expertise in PHP, Mobile App Development, Android, Cryptography, MySQL, Software Development, OpenSSL, Backend Development, Encryption, Security • Clean, optimized, and scalable code • Fast communication and daily updates • 100% focus on delivering results, not just code If needed, I can also suggest improvements to make your project even better. Let’s connect I’m ready to start right away. Best regards, Umer
€6 EUR in 2 days
3.3
3.3

Olá! Tenho o prazer de informar que já desenvolvi um aplicativo de bate-papo para Android que roda em seu próprio servidor dedicado e garante total privacidade entre dois usuários. O sistema suporta mensagens em tempo real, compartilhamento de arquivos e uma sala de bate-papo privada protegida por senha, tudo com criptografia de ponta a ponta robusta, garantindo que nenhum dado seja exposto durante a transmissão ou armazenamento. Meu foco é entregar um sistema de mensagens privadas seguro, com os seguintes recursos: aplicativo Android com mensagens criptografadas em tempo real, compartilhamento seguro de arquivos (imagens, PDFs e vídeos), acesso à sala de bate-papo protegida por senha e somente por convite, criptografia de ponta a ponta robusta para mensagens e arquivos, e implantação do backend em seu servidor com gerenciamento seguro de API. Sou especialista na criação de aplicativos seguros em tempo real, com vasta experiência em sistemas de backend, fluxos de trabalho de criptografia e design de API escalável utilizando tecnologias modernas. Meu foco é criar sistemas onde privacidade, desempenho e facilidade de manutenção estejam perfeitamente integrados. Vamos conversar para analisarmos sua pilha de tecnologias preferida, suas expectativas de segurança e sua configuração de hospedagem, para que possamos definir um plano de implementação robusto e preparado para o futuro. Atenciosamente, Nikita Gupta.
€10 EUR in 40 days
3.2
3.2

Olá, Após revisar em detalhe os requisitos do projeto, entendo claramente o escopo e as expectativas. Tenho experiência com Android, backend próprio e implementação de comunicação segura, e posso começar imediatamente. Tenho sólida experiência em Android, PHP, MySQL, Backend Development, Cryptography, OpenSSL/libsodium, Encryption e Security. Para este chat, eu avaliaria os repositórios open-source indicados, escolheria a base mais segura, adaptaria o sistema para mensagens em tempo real, envio de arquivos, sala protegida por senha única e criptografia ponta-a-ponta, mantendo o backend no seu servidor e sem registro público. Também entregaria o APK de teste, código comentado, configuração HTTPS/chaves e um passo-a-passo de instalação replicável. Tenho um par de perguntas rápidas. • Você prefere manter obrigatoriamente PHP + MySQL ou aceita Node/Firebase/self-hosted se for mais seguro? • A senha da sala será fixa por sala ou gerada para cada convite? Ficarei feliz em discutir os detalhes e entregar uma solução segura, documentada e fácil de manter. Atenciosamente, Carlos.
€10 EUR in 40 days
3.0
3.0

Lisbon, Portugal
Member since Apr 4, 2026
€12-18 EUR / hour
min €36 EUR / hour
€20-100 EUR
€250-750 EUR
₹12500-25000 INR
₹1000000-2500000 INR
$10-30 USD
₹600-1500 INR
$10-30 USD
₹750-1250 INR / hour
$10-30 USD
₹1500-12500 INR
$1500-3000 USD
$250-750 AUD
$2-8 USD / hour
$250-750 USD
$750-1500 USD
$250-750 AUD
₹12500-37500 INR
£10-20 GBP
₹12500-37500 INR
$2-8 AUD / hour
$14-30 NZD