1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-23 20:15:19 -07:00
This commit is contained in:
Frank Denis 2019-05-21 10:17:35 +02:00
parent 515d540524
commit e24847c364

View File

@ -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