From fca1d5d383bfb1d02c50543f03aa00bcd883f81a Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Tue, 13 Feb 2018 21:29:32 +0100 Subject: [PATCH] Explicited the re-use of crypto_sign_update() --- src/monocypher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.47.3