]> git.codecow.com Git - Monocypher.git/commitdiff
Missing space
authorLoup Vaillant <loup@loup-vaillant.fr>
Wed, 25 Mar 2020 14:01:33 +0000 (15:01 +0100)
committerLoup Vaillant <loup@loup-vaillant.fr>
Wed, 25 Mar 2020 14:01:33 +0000 (15:01 +0100)
doc/man/man3/crypto_curve_to_hidden.3monocypher

index 10075f9e206417980ec7e2c54a16e5be11866255..9870cc8abf1f53cfdfd776a90faec8c41f9ae950 100644 (file)
@@ -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 */