From 2d8c08b01beb1ed23a48ed7d116be3de0d91fb04 Mon Sep 17 00:00:00 2001 From: GraxRabble Date: Wed, 24 Sep 2014 20:11:50 -0400 Subject: [PATCH] Got bob and alice mixed up on box.c:87 --- demos/box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/box.c b/demos/box.c index 022b8ab8..a29d49bd 100644 --- a/demos/box.c +++ b/demos/box.c @@ -84,7 +84,7 @@ box(void) /* encrypt the message */ printf("Encrypting with %s\n\n", crypto_box_primitive()); - crypto_box_easy(c, m, mlen, n, bob_pk, alice_sk); + crypto_box_easy(c, m, mlen, n, alice_pk, bob_sk); /* sent message */ puts("Bob sending message...\n");