From: Loup Vaillant Date: Tue, 13 Feb 2018 20:29:32 +0000 (+0100) Subject: Explicited the re-use of crypto_sign_update() X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=fca1d5d383bfb1d02c50543f03aa00bcd883f81a;p=Monocypher.git Explicited the re-use of crypto_sign_update() --- diff --git a/src/monocypher.h b/src/monocypher.h index ef007f3..8b5db65 100644 --- a/src/monocypher.h +++ b/src/monocypher.h @@ -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)