Skip to content

Commit

Permalink
[fix] help message of opaque(1)
Browse files Browse the repository at this point in the history
  • Loading branch information
stef committed Oct 12, 2023
1 parent 12353eb commit 08be444
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ static void usage(const char *self) {
fprintf(stderr, "%s finalize idU idS <ctx 4<rpub 3>export_key >record - finalize registration\n", self);
fprintf(stderr, "%s store <rec 3<rsec >record - complete record\n", self);
fprintf(stderr, "socat | %s server-reg 3>record [4<skS] - server portion of online registration\n", self);
fprintf(stderr, "socat | %s user-reg idU idS 3< <(echo -n password) 4>export_key - server portion of online registration\n", self);
fprintf(stderr, "socat | %s user-reg idU idS 3< <(echo -n password) 4>export_key - user portion of online registration\n", self);
fprintf(stderr, "\nRun OPAQUE\n");
fprintf(stderr, "socat | %s server idU idS context 3<record 4>shared_key - server portion of OPAQUE session\n", self);
fprintf(stderr, "socat | %s user idU idS context 3< <(echo -n password) 4>export_key 5>shared_key [6<pkS] - server portion of OPAQUE session\n", self);
fprintf(stderr, "socat | %s user idU idS context 3< <(echo -n password) 4>export_key 5>shared_key [6<pkS] - user portion of OPAQUE session\n", self);
}

static int init(const char** argv) {
Expand Down

0 comments on commit 08be444

Please sign in to comment.