This commit is contained in:
Frank Denis 2015-11-01 22:16:04 +01:00
parent 156006d6aa
commit 437b20161c
2 changed files with 9 additions and 9 deletions

View File

@ -4,11 +4,11 @@
/* /*
* WARNING: This construction was a prototype, which should not be used * WARNING: This construction was a prototype, which should not be used
* any more in new projects. * any more in new projects.
* *
* crypto_sign_edwards25519sha512batch is provided for applications * crypto_sign_edwards25519sha512batch is provided for applications
* initially built with NaCl, but as recommended by the author of this * initially built with NaCl, but as recommended by the author of this
* construction, new applications should use ed25519 instead. * construction, new applications should use ed25519 instead.
* *
* In Sodium, you should use the high-level crypto_sign_*() functions instead. * In Sodium, you should use the high-level crypto_sign_*() functions instead.
*/ */

View File

@ -188,14 +188,14 @@ randombytes_sysrandom_init(void)
# ifdef SYS_getrandom # ifdef SYS_getrandom
{ {
unsigned char fodder[16]; unsigned char fodder[16];
if (randombytes_linux_getrandom(fodder, sizeof fodder) == 0) { if (randombytes_linux_getrandom(fodder, sizeof fodder) == 0) {
stream.getrandom_available = 1; stream.getrandom_available = 1;
errno = errno_save; errno = errno_save;
return; return;
} }
stream.getrandom_available = 0; stream.getrandom_available = 0;
} }
# endif # endif