From 784d7001e0bc0143f45519fa23cf8db0ba4bd12f Mon Sep 17 00:00:00 2001 From: Orson Peters Date: Sun, 24 Mar 2013 23:33:27 +0100 Subject: [PATCH] updated example with key exchange --- readme.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f9bfe98..3ba1314 100644 --- a/readme.md +++ b/readme.md @@ -151,7 +151,10 @@ ed25519_create_keypair(other_public_key, other_private_key, seed); /* do a key exchange with other_public_key */ ed25519_key_exchange(shared_secret, other_public_key, private_key); -/* the magic is that ed25519_key_exchange(shared_secret, public_key, other_private_key); would result in the same shared_secret */ +/* + the magic here is that ed25519_key_exchange(shared_secret, public_key, + other_private_key); would result in the same shared_secret +*/ ```