function Roadmap() { const [selectedPhase, setSelectedPhase] = React.useState(null); const phases = [ { version: "v1.0", title: "Start of Development", status: "done", date: "Early 2025", description: "Idea, prototype, and infrastructure setup", features: [ "Concept and requirements formation", "Stack selection: WebRTC, P2P, cryptography", "First messaging prototypes", "Repository creation and CI", "Basic encryption architecture", "UX/UI design" ] }, { version: "v1.5", title: "Alpha Release", status: "done", date: "Spring 2025", description: "First public alpha: basic chat and key exchange", features: [ "Basic P2P messaging via WebRTC", "Simple E2E encryption (demo scheme)", "Stable signaling and reconnection", "Minimal UX for testing", "Feedback collection from early testers" ] }, { version: "v2.0", title: "Security Hardened", status: "done", date: "Summer 2025", description: "Security strengthening and stable branch release", features: [ "ECDH/ECDSA implementation in production", "Perfect Forward Secrecy and key rotation", "Improved authentication checks", "File encryption and large payload transfers", "Audit of basic cryptoprocesses" ] }, { version: "v3.0", title: "Scaling & Stability", status: "done", date: "Fall 2025", description: "Network scaling and stability improvements", features: [ "Optimization of P2P connections and NAT traversal", "Reconnection mechanisms and message queues", "Reduced battery consumption on mobile", "Support for multi-device synchronization", "Monitoring and logging tools for developers" ] }, { version: "v3.5", title: "Privacy-first Release", status: "done", date: "Winter 2025", description: "Focus on privacy: minimizing metadata", features: [ "Metadata protection and fingerprint reduction", "Experiments with onion routing and DHT", "Options for anonymous connections", "Preparation for open code audit", "Improved user verification processes" ] }, // current and future phases { version: "v4.4.18", title: "Enhanced Security Edition", status: "current", date: "Now", description: "Current version with ECDH + DTLS + SAS security, 18-layer military-grade cryptography and complete ASN.1 validation", features: [ "ECDH + DTLS + SAS triple-layer security", "ECDH P-384 + AES-GCM 256-bit encryption", "DTLS fingerprint verification", "SAS (Short Authentication String) verification", "Perfect Forward Secrecy with key rotation", "Enhanced MITM attack prevention", "Complete ASN.1 DER validation", "OID and EC point verification", "SPKI structure validation", "P2P WebRTC architecture", "Metadata protection", "100% open source code" ] }, { version: "v4.5", title: "Mobile & Desktop Edition", status: "development", date: "Q2 2025", description: "Native apps for all platforms", features: [ "PWA app for mobile", "Electron app for desktop", "Real-time notifications", "Automatic reconnection", "Battery optimization", "Cross-device synchronization", "Improved UX/UI", "Support for files up to 100MB" ] }, { version: "v5.0", title: "Quantum-Resistant Edition", status: "planned", date: "Q4 2025", description: "Protection against quantum computers", features: [ "Post-quantum cryptography CRYSTALS-Kyber", "SPHINCS+ digital signatures", "Hybrid scheme: classic + PQ", "Quantum-safe key exchange", "Updated hashing algorithms", "Migration of existing sessions", "Compatibility with v4.x", "Quantum-resistant protocols" ] }, { version: "v5.5", title: "Group Communications", status: "planned", date: "Q2 2026", description: "Group chats with preserved privacy", features: [ "P2P group connections up to 8 participants", "Mesh networking for groups", "Signal Double Ratchet for groups", "Anonymous groups without metadata", "Ephemeral groups (disappear after session)", "Cryptographic group administration", "Group member auditing" ] }, { version: "v6.0", title: "Decentralized Network", status: "research", date: "2027", description: "Fully decentralized network", features: [ "LockBit node mesh network", "DHT for peer discovery", "Built-in onion routing", "Tokenomics and node incentives", "Governance via DAO", "Interoperability with other networks", "Cross-platform compatibility", "Self-healing network" ] }, { version: "v7.0", title: "AI Privacy Assistant", status: "research", date: "2028+", description: "AI for privacy and security", features: [ "Local AI threat analysis", "Automatic MITM detection", "Adaptive cryptography", "Personalized security recommendations", "Zero-knowledge machine learning", "Private AI assistant", "Predictive security", "Autonomous attack protection" ] } ]; const getStatusConfig = (status) => { switch (status) { case 'current': return { color: 'green', bgClass: 'bg-green-500/10 border-green-500/20', textClass: 'text-green-400', icon: 'fas fa-check-circle', label: 'Current Version' }; case 'development': return { color: 'orange', bgClass: 'bg-orange-500/10 border-orange-500/20', textClass: 'text-orange-400', icon: 'fas fa-code', label: 'In Development' }; case 'planned': return { color: 'blue', bgClass: 'bg-blue-500/10 border-blue-500/20', textClass: 'text-blue-400', icon: 'fas fa-calendar-alt', label: 'Planned' }; case 'research': return { color: 'purple', bgClass: 'bg-purple-500/10 border-purple-500/20', textClass: 'text-purple-400', icon: 'fas fa-flask', label: 'Research' }; case 'done': return { color: 'gray', bgClass: 'bg-gray-500/10 border-gray-500/20', textClass: 'text-gray-300', icon: 'fas fa-flag-checkered', label: 'Released' }; default: return { color: 'gray', bgClass: 'bg-gray-500/10 border-gray-500/20', textClass: 'text-gray-400', icon: 'fas fa-question', label: 'Unknown' }; } }; const togglePhaseDetail = (index) => { setSelectedPhase(selectedPhase === index ? null : index); }; return (

Development Roadmap

Evolution of SecureBit.chat : from initial development to quantum-resistant decentralized network with complete ASN.1 validation

{/* The line has been removed */}
{phases.map((phase, index) => { const statusConfig = getStatusConfig(phase.status); const isExpanded = selectedPhase === index; return (
{/* The dots are visible only on sm and larger screens */}
); })}

Join the future of privacy

SecureBit.chat grows thanks to the community. Your ideas and feedback help shape the future of secure communication with complete ASN.1 validation.

); }; window.Roadmap = Roadmap;