From a30cd2c31d7a0828a7bc777211542446c30c3cff Mon Sep 17 00:00:00 2001 From: miro Date: Tue, 24 Dec 2024 04:48:28 +0000 Subject: [PATCH] simplify handshake docs --- docs/12_handshake.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/12_handshake.md b/docs/12_handshake.md index 6c6c86b..410f6b0 100644 --- a/docs/12_handshake.md +++ b/docs/12_handshake.md @@ -22,11 +22,11 @@ For detailed code and various usage examples, you can refer to the [Poorman Hand - The server provides a public key to the client, and the client verifies the server's authenticity. - - Supports implicit trust for first-time connections (when no public key is available). + - Supports implicit trust for first-time connections (when no previous public key is available). - - Uses asymmetric encryption (RSA, for example) to ensure that communication is secure and cannot be intercepted or modified. + - Uses asymmetric encryption to ensure that communication is secure and cannot be intercepted or modified. - - Encrypts the symmetric session key to allow further communication using the shared key. + - The symmetric session key (AES) for further communication is transmitted encrypted with PGP public keys. > ⚠️ PGP Handshake is a work in progress! 🚧