What this means in practice
- The signaling server brokers the connection but never sees file data.
- The relay server (when used) sees only encrypted packets it cannot read.
- Floe has no database of keys, stores no files, and retains no record of what you transfer.
- Once both connections are closed, the keys are gone and the data cannot be recovered.
Self-hosted instances
These properties hold on self-hosted instances as well. The signaling server and TURN relay never receive plaintext file data regardless of who operates them. If you run your own instance, you get the same encryption guarantees.Technical details
Technical details
DTLS for data channels: WebRTC data channels are transported over SCTP (Stream Control Transmission Protocol) running on top of DTLS. This is distinct from DTLS-SRTP, which is used for audio/video media streams. Both provide strong encryption, but data channels specifically use SCTP over DTLS.Key exchange: Each peer generates a certificate and key pair for the session. The fingerprints of these certificates are exchanged via the SDP offer and answer during signaling. DTLS verifies these fingerprints during the handshake, ensuring that even if the signaling channel is compromised, a man-in-the-middle cannot inject a different certificate.Per-session keys: Keys are ephemeral. They are generated when the connection is created and discarded when it closes. There is no key escrow, no recovery mechanism, and no persistent storage of session keys.