From 2be479b1e9d882e0b3bde2067abbe785f1ca9ab0 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Mon, 6 Feb 2023 17:35:44 +0100 Subject: [PATCH] Switch to HMAC-BLAKE2s --- README.md | 4 ++-- bidi-gc.py | 2 +- chat.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6ff1986..1b42527 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ Start a Syndicate broker (such as Find the line of broker output giving the root capability: - ... rootcap= ... + ... rootcap= ... Then, run [chat.py](chat.py) several times in several separate windows: python chat.py \ --address '' \ - --cap '' + --cap '' diff --git a/bidi-gc.py b/bidi-gc.py index 8418818..6116f6b 100644 --- a/bidi-gc.py +++ b/bidi-gc.py @@ -14,7 +14,7 @@ parser.add_argument('--address', metavar='\'\'', default='') parser.add_argument('--cap', metavar='\'\'', help='capability for the dataspace on the server', - default='') + default='') parser.add_argument('--start', help='make this instance kick off the procedure', action='store_true') diff --git a/chat.py b/chat.py index 37e13b1..05f2ebd 100644 --- a/chat.py +++ b/chat.py @@ -17,7 +17,7 @@ parser.add_argument('--address', metavar='\'\'', default='') parser.add_argument('--cap', metavar='\'\'', help='capability for the dataspace on the server', - default='') + default='') args = parser.parse_args() Present = simpleChatProtocol.Present