]> git.codecow.com Git - Monocypher.git/commitdiff
Forgot a contraction
authorLoup Vaillant <loup@loup-vaillant.fr>
Sun, 29 Oct 2017 15:01:00 +0000 (16:01 +0100)
committerLoup Vaillant <loup@loup-vaillant.fr>
Sun, 29 Oct 2017 15:01:00 +0000 (16:01 +0100)
doc/man/man3/crypto_chacha20_encrypt.3monocypher

index 1b6d4fb924c7d0a8d0b7c87074bbeb11774969c6..7921c82f64483daa62acdbfbc251d8d6467781e5 100644 (file)
@@ -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));