From: Loup Vaillant Date: Wed, 25 Mar 2020 14:01:33 +0000 (+0100) Subject: Missing space X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=716df6176e0b466cf2f388160dc536e0f14ea833;p=Monocypher.git Missing space --- diff --git a/doc/man/man3/crypto_curve_to_hidden.3monocypher b/doc/man/man3/crypto_curve_to_hidden.3monocypher index 10075f9..9870cc8 100644 --- a/doc/man/man3/crypto_curve_to_hidden.3monocypher +++ b/doc/man/man3/crypto_curve_to_hidden.3monocypher @@ -228,10 +228,10 @@ for (;;) { Performing a key exchange with the other party's public key having been hidden: .Bd -literal -offset indent -uint8_t hidden_pk[32]; /* Their hidden public key */ -uint8_t their_pk [32]; /* Their unhidden public key */ -uint8_t your_sk [32]; /* Your secret key */ -uint8_tshared_key[32]; /* Shared session key */ +uint8_t hidden_pk [32]; /* Their hidden public key */ +uint8_t their_pk [32]; /* Their unhidden public key */ +uint8_t your_sk [32]; /* Your secret key */ +uint8_t shared_key[32]; /* Shared session key */ crypto_hidden_to_curve(their_pk, hidden_pk); crypto_key_exchange(shared_key, your_sk, their_pk); /* Wipe secrets if they are no longer needed */