sodiumTest

Libsodium examples, client/server system
git clone https://noulin.net/git/sodiumTest.git
Log | Files | Refs | README

commit 09a864a5bfdd29c6fa5e039dff4d7393cbd058f3
parent edf52b6747680415025ce94602dc0c33dffdabfe
Author: Remy Noulin <loader2x@gmail.com>
Date:   Tue, 11 Jul 2023 10:55:26 +0200

fix compilation issues in client and server

client.c | 2 +-
server.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Diffstat:
Mclient.c | 2+-
Mserver.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/client.c b/client.c @@ -46,7 +46,7 @@ int main(int ac, char **av) { // generate keys keyst clientKeys = init0Var; - newKeys(&clientKeys); + newKeysBuf(&clientKeys); char *msg = "Hello"; diff --git a/server.c b/server.c @@ -16,7 +16,7 @@ int main(int ac, char **av){ // generate keys keyst serverKeys = init0Var; - newKeys(&serverKeys); + newKeysBuf(&serverKeys); // start event loop