]> git.codecow.com Git - Monocypher.git/commitdiff
Fix typo in comment
authorCuleX <cculex@gmail.com>
Sat, 14 Oct 2017 11:28:38 +0000 (13:28 +0200)
committerCuleX <cculex@gmail.com>
Sat, 14 Oct 2017 11:28:38 +0000 (13:28 +0200)
paralell -> parallel

src/monocypher.c

index eba4074e2fd4b743ebcfd43c1f286d135fbf00d1..7c0095523d275f40d5b0e8d943b90529025c94c9 100644 (file)
@@ -1510,7 +1510,7 @@ void crypto_sign_init_second_pass(crypto_sign_ctx *ctx)
     ge_tobytes(half_sig, &R);
 
     // Hash R, the public key, and the message together.
-    // It cannot be done in paralell with the first hash.
+    // It cannot be done in parallel with the first hash.
     HASH_INIT  (&ctx->hash);
     HASH_UPDATE(&ctx->hash, half_sig, 32);
     HASH_UPDATE(&ctx->hash, ctx->pk , 32);