From a57ac9225a5d2e6b96d1a3cebeaf01a065e89cce Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Wed, 29 May 2024 14:48:14 +0200 Subject: [PATCH] small carification on tls --- iroh-net/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iroh-net/src/lib.rs b/iroh-net/src/lib.rs index 103ebfbdce..5cba9c3892 100644 --- a/iroh-net/src/lib.rs +++ b/iroh-net/src/lib.rs @@ -25,7 +25,7 @@ //! # Encryption //! //! The connection is encrypted using TLS, like standard QUIC connections. Unlike standard -//! QUIC there is no client, server or server TLS key. Instead each iroh-net node has a +//! QUIC there is no client, server or server TLS key and certificate chain. Instead each iroh-net node has a //! unique [`SecretKey`] used to authenticate and encrypt the connection. When an iroh-net //! node connects, it uses the corresponding [`PublicKey`] to ensure the connection is only //! established with the intended peer.