From e99ba1f24cacffbebde5f775587e572217b00a29 Mon Sep 17 00:00:00 2001 From: Anthony Hu Date: Tue, 30 Dec 2025 14:53:11 -0500 Subject: [PATCH] Fix copy and paste errors. --- dtls/README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/dtls/README.md b/dtls/README.md index 04d59fac..c2f7bebf 100644 --- a/dtls/README.md +++ b/dtls/README.md @@ -1738,14 +1738,24 @@ In another terminal, run the client export application, enter a message and then ``` Both application will then exit. You can find new .bin files that are generated. + In the first terminal, run the the server import application. ```bash -./server-dtls-export +./server-dtls-import ``` -It will load the server binary file. In the second terminal, run the client import application, type a message and press enter. The server will be able to get the message and decrypt it as if the two applications had never been interrupted. -. +It will import the server binary file. + +In the second terminal, run the client import application. + +```bash +./client-dtls-import +``` + +It will import the client binary file. + +Type a message and press enter. The server will be able to get the message and decrypt it as if the two applications had never been interrupted. ### 6.5 Session Data Encryption