From 575babb389eaa5eb7748d6c0116b9183acfa681c Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 21 May 2019 10:17:35 +0200 Subject: [PATCH] Comment --- src/libsodium/crypto_sign/ed25519/ref10/sign.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsodium/crypto_sign/ed25519/ref10/sign.c b/src/libsodium/crypto_sign/ed25519/ref10/sign.c index 3e34e170..bbdd8f72 100644 --- a/src/libsodium/crypto_sign/ed25519/ref10/sign.c +++ b/src/libsodium/crypto_sign/ed25519/ref10/sign.c @@ -76,7 +76,7 @@ _crypto_sign_ed25519_detached(unsigned char *sig, unsigned long long *siglen_p, crypto_hash_sha512(az, sk, 32); #ifdef ED25519_NONDETERMINISTIC - _crypto_sign_ed25519_synthetic_r_hv(&hs, nonce, az); + _crypto_sign_ed25519_synthetic_r_hv(&hs, nonce /* Z */, az); #else crypto_hash_sha512_update(&hs, az + 32, 32); #endif