]> git.codecow.com Git - Monocypher.git/commitdiff
Explicited the re-use of crypto_sign_update()
authorLoup Vaillant <loup@loup-vaillant.fr>
Tue, 13 Feb 2018 20:29:32 +0000 (21:29 +0100)
committerLoup Vaillant <loup@loup-vaillant.fr>
Tue, 13 Feb 2018 20:29:32 +0000 (21:29 +0100)
src/monocypher.h

index ef007f32b51fbae62d4b517b24bfa54a62b03dc3..8b5db6533ff8e57b852b0a4c18e4bf77e80dde82 100644 (file)
@@ -207,7 +207,7 @@ void crypto_sign_init_first_pass(crypto_sign_ctx *ctx,
 void crypto_sign_update(crypto_sign_ctx *ctx,
                         const uint8_t *message, size_t message_size);
 void crypto_sign_init_second_pass(crypto_sign_ctx *ctx);
-// crypto_sign_update()
+// use crypto_sign_update() again.
 void crypto_sign_final(crypto_sign_ctx *ctx, uint8_t signature[64]);
 
 // Incremental interface for verification (1 pass)