End-to-End Encryption Security
P2P connections in NFLTR use AES-256 encryption with per-session key derivation. The server facilitates the handshake but never sees the plaintext data — your transfers are private end-to-end.
How E2EE Works in NFLTR
When two agents establish a P2P connection, they perform a multi-step handshake using the NFLTR server as a signaling channel. Once the handshake completes, all data flows directly between the agents — encrypted and authenticated.
Encryption Details
🔐 AES-256-GCM
All P2P data is encrypted using AES-256 in GCM mode — authenticated encryption that detects tampering.
🔑 Per-Session Keys
A fresh encryption key is derived for every session. Compromising one session doesn't affect past or future transfers.
🤝 HMAC Mutual Auth
Both parties authenticate via HMAC before any data flows. Prevents man-in-the-middle attacks during handshake.
🌐 STUN NAT Traversal
Connections bypass the server entirely after handshake. STUN-assisted NAT traversal works across LAN, CGNAT, and hairpin NAT.
🚫 Zero Server Knowledge
The server only relays handshake messages. It never has access to the session key or plaintext data.
📁 File Integrity
File transfers include SHA-256 checksums verified by the receiver. Any corruption is detected and rejected.
What's Encrypted
- P2P file transfers —
nfltr p2p send/recv - P2P chat messages —
nfltr p2p chat - P2P audio/video calls —
nfltr p2p call - Agent-to-agent data — via the
nfltr a2achannel
Trust Model
NFLTR uses a trust-the-server-for-signaling-only model:
- Both agents must authenticate to the server (API key / fleet token / mTLS)
- The server relays the handshake (key exchange + HMAC auth) between agents
- After the handshake, a direct P2P connection is established
- All subsequent data flows directly between agents, encrypted with AES-256
- The server cannot decrypt the data even if it wanted to
Regular tunnels (HTTP, TCP) use TLS for transport encryption between agent and server. P2P features add a second layer of E2EE where data never passes through the server at all.
Private by design
AES-256 encryption, per-session keys, zero server knowledge. Your data stays yours.
Download Agent P2P Transfer →