You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,12 @@
4
4
5
5
This is a demo implementation of SMP ([simplex messaging protocol](https://github.com/simplex-chat/protocol/blob/master/simplex-messaging.md)) server.
6
6
7
-
This is not usable for real applications, as it lacks the following protocol features:
7
+
It has a very limited utility (if any) for real applications, as it lacks the following protocol features:
8
8
9
9
- cryptographic signature verification, instead it simply compares provided "signature" with stored "public key", effectively treating them as plain text passwords.
10
10
- there is no transport encryption
11
11
12
-
These limitations make it easy to experiment with the protocol logic via telnet.
12
+
Because of these limitations, it is easy to experiment with the protocol logic via telnet.
13
13
14
14
You can either run it locally or try with the deployed demo server:
15
15
@@ -25,22 +25,22 @@ telnet smp.simplex.im 5223
25
25
26
26
Lines you should send are prefixed with `>` character, you should not type them.
27
27
28
-
Comments are prefixed with `--`, they are not part of transmission.
28
+
Comments are prefixed with `--`, they are not part of transmissions.
29
29
30
-
`>` on its own means you need to press return - telnet should be configured to send CRLF.
30
+
`>` on its own means you need to press `return` - telnet should be configured to send it as CRLF.
31
31
32
32
1. Create simplex message queue:
33
33
34
34
```telnet
35
35
>
36
36
>
37
-
> CONN 1234 -- 1234 is recipient's key
37
+
> NEW 1234 -- 1234 is recipient's key
38
38
39
39
40
-
IDS QuCLU4YxgS7wcPFA YB4CCATREHkaQcEh -- recipient and sender ID for the queue
40
+
IDS QuCLU4YxgS7wcPFA YB4CCATREHkaQcEh -- recipient and sender IDs for the queue
0 commit comments