From: Michael Savage Date: Tue, 28 Nov 2017 18:14:20 +0000 (+0200) Subject: chacha20_H manual tweaks X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=961b828fd5b4eba1adbd3a422348fa44c3bb23a2;p=Monocypher.git chacha20_H manual tweaks --- diff --git a/doc/man/man3/crypto_chacha20_H.3monocypher b/doc/man/man3/crypto_chacha20_H.3monocypher index 1276826..4b7d266 100644 --- a/doc/man/man3/crypto_chacha20_H.3monocypher +++ b/doc/man/man3/crypto_chacha20_H.3monocypher @@ -42,7 +42,7 @@ Simple hash. .Bd -literal -offset indent const uint8_t key[32] /* Must have enough entropy */ const uint8_t in [16] /* Does not have to be random */ -uint8_t out[32] /* will be random iff the above holds */ +uint8_t out[32] /* Will be random iff the above holds */ crypto_chacha20_H(out, key, in); /* Wipe secrets if they are no longer needed */ crypto_wipe(key, 32);