From 84dc30665e6a49a523f99c26a2b41f16ba9e1aa1 Mon Sep 17 00:00:00 2001 From: Nihal Jere Date: Fri, 17 May 2024 21:07:35 -0500 Subject: [PATCH] Doc: use pointers instead of arrays when size is provided --- doc/crypto_blake2b.3monocypher | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/crypto_blake2b.3monocypher b/doc/crypto_blake2b.3monocypher index 86ff25b..2dccb38 100644 --- a/doc/crypto_blake2b.3monocypher +++ b/doc/crypto_blake2b.3monocypher @@ -65,15 +65,15 @@ .In monocypher.h .Ft void .Fo crypto_blake2b -.Fa "uint8_t hash[64]" +.Fa "uint8_t *hash" .Fa "size_t hash_size" .Fa "const uint8_t *message" .Fa "size_t message_size" .Fc .Fo crypto_blake2b_keyed -.Fa "uint8_t hash[64]" +.Fa "uint8_t *hash" .Fa "size_t hash_size" -.Fa "uint8_t key[64]" +.Fa "uint8_t *key" .Fa "size_t key_size" .Fa "const uint8_t *message" .Fa "size_t message_size" @@ -87,7 +87,7 @@ .Fo crypto_blake2b_keyed_init .Fa "crypto_blake2b_ctx *ctx" .Fa "size_t hash_size" -.Fa "uint8_t key[64]" +.Fa "uint8_t *key" .Fa "size_t key_size" .Fc .Ft void -- 2.47.3