From: Loup Vaillant Date: Sun, 29 Oct 2017 15:01:00 +0000 (+0100) Subject: Forgot a contraction X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=70a91747253586d750abb183b4268be9567112ee;p=Monocypher.git Forgot a contraction --- diff --git a/doc/man/man3/crypto_chacha20_encrypt.3monocypher b/doc/man/man3/crypto_chacha20_encrypt.3monocypher index 1b6d4fb..7921c82 100644 --- a/doc/man/man3/crypto_chacha20_encrypt.3monocypher +++ b/doc/man/man3/crypto_chacha20_encrypt.3monocypher @@ -169,7 +169,7 @@ uint8_t cipher_text[500]; /* Will be the encrypted message */ crypto_chacha_ctx ctx; crypto_chacha20_x_init(&ctx, key, nonce); crypto_chacha20_encrypt(&ctx, cipher_text, plain_text, 500); -/* Wipe secrets if they're no longer needed */ +/* Wipe secrets if they are no longer needed */ crypto_wipe(key, sizeof(key)); crypto_wipe(&ctx, sizeof(ctx)); crypto_wipe(plain_text, sizeof(plain_text));