From d54d52b9bb9bdb869b16cfed955cd2ec3d1aef04 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Sun, 18 Oct 2020 21:31:51 +0100 Subject: [PATCH] readme corrections --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1cda22211..8ee5d3901 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## SMP server demo -This is a demo implementation of SMP (simplex messaging protocol) server. +This is a demo implementation of SMP ([simplex messaging protocol](https://github.com/simplex-chat/protocol/blob/master/simplex-messaging.md)) server. This is not usable for real applications, as it lacks the following protocol features: @@ -54,7 +54,7 @@ OK 3. Secure queue with sender's "key" ```telnet -> 1234 -- "signature" - same as "key" in the demo +> 1234 -- recipient's "signature" - same as "key" in the demo > QuCLU4YxgS7wcPFA -- recipient ID > KEY abcd -- "key" provided by sender @@ -65,8 +65,8 @@ OK 4. Sender can now send messages to the queue ```telnet -> abcd -> YB4CCATREHkaQcEh +> abcd -- sender's "signature" - same as "key" in the demo +> YB4CCATREHkaQcEh -- sender ID > SEND :hello YB4CCATREHkaQcEh @@ -88,6 +88,6 @@ QuCLU4YxgS7wcPFA OK ``` -## Desgin +## Design ![server design](design/server.svg)