From 5a22a4faec2eb4b99b4a90d0621bf3fe2ff1c921 Mon Sep 17 00:00:00 2001 From: Peter Schwabe Date: Fri, 11 Jan 2019 18:16:43 +0100 Subject: [PATCH] Renamed sigbytes to siglen (consistent with mlen) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e19d54b..b8e2cd0c 100644 --- a/README.md +++ b/README.md @@ -88,8 +88,8 @@ in most software stacks of computing and verifying signatures instead of produci recovering signed messages. Specifically, those functions have the following name and signature: ``` -int crypto_sign_signature(uint8_t *sig, size_t *sigbytes, const uint8_t *m, size_t mlen, const uint8_t *sk); -int crypto_sign_verify(const uint8_t *sig, size_t sigbytes, const uint8_t *m, size_t mlen, const uint8_t *pk); +int crypto_sign_signature(uint8_t *sig, size_t *siglen, const uint8_t *m, size_t mlen, const uint8_t *sk); +int crypto_sign_verify(const uint8_t *sig, size_t siglen, const uint8_t *m, size_t mlen, const uint8_t *pk); ``` ## License