From 7d29f52eaf9f38195824c5a362deb9b2dbc75ef9 Mon Sep 17 00:00:00 2001 From: Sagar Patil Date: Thu, 20 Jun 2024 17:21:17 -0400 Subject: [PATCH] fix problamatic line --- src/optional/monocypher-ed25519.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/optional/monocypher-ed25519.c b/src/optional/monocypher-ed25519.c index 5e4dcdf8..1ac07466 100644 --- a/src/optional/monocypher-ed25519.c +++ b/src/optional/monocypher-ed25519.c @@ -441,7 +441,7 @@ static void hash_reduce(u8 h[32], crypto_eddsa_reduce(h, hash); } -static void ed25519_dom_sign(u8 signature [64], const u8 secret_key[32], +static void ed25519_dom_sign(u8 signature[64], const u8 secret_key[64], const u8 *dom, size_t dom_size, const u8 *message, size_t message_size) {