From: Loup Vaillant Date: Sun, 4 Sep 2016 00:21:16 +0000 (+0200) Subject: typo X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=18a2bfd3d76b0d128396c010db96f3fcea26fe83;p=Monocypher.git typo --- diff --git a/chacha20.c b/chacha20.c index 54a32d5..46e34cb 100644 --- a/chacha20.c +++ b/chacha20.c @@ -159,10 +159,10 @@ chacha20_block(uint8_t output[64], const crypto_chacha_ctx *ctx) // don't try the whole key space. // // As of 2016, "low enough" means 6 or 7 rounds. We use 20. - // This shoul be enough to prevent anyone from breaking them all + // This should be enough to prevent anyone from breaking them all // in the forseeable future. // - // Note that in principle, we don't have to add the constants nonce + // Note that in principle, we don't have to add the constant, nonce, // and counter: that part could be reversed by the attacker anyway // so we'd be just as secure if we didn't. However that only improves // the performance of naive implementations such as this one. With