mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-28 22:21:15 -07:00
revert original hack
This commit is contained in:
parent
ea2c1e86e2
commit
8beae17253
@ -9,12 +9,6 @@
|
|||||||
# include <emscripten.h>
|
# include <emscripten.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifdef __native_client__
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <irt.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "randombytes.h"
|
#include "randombytes.h"
|
||||||
#include "randombytes_sysrandom.h"
|
#include "randombytes_sysrandom.h"
|
||||||
|
|
||||||
@ -120,24 +114,9 @@ void
|
|||||||
randombytes_buf(void * const buf, const size_t size)
|
randombytes_buf(void * const buf, const size_t size)
|
||||||
{
|
{
|
||||||
#ifndef __EMSCRIPTEN__
|
#ifndef __EMSCRIPTEN__
|
||||||
#ifdef __native_client__
|
|
||||||
size_t n = 0;
|
|
||||||
struct nacl_irt_random rand_intf;
|
|
||||||
|
|
||||||
if (nacl_interface_query(NACL_IRT_RANDOM_v0_1,
|
|
||||||
&rand_intf, sizeof(rand_intf)) != sizeof(rand_intf)) abort();
|
|
||||||
|
|
||||||
while (n < size) {
|
|
||||||
size_t nread;
|
|
||||||
if (rand_intf.get_random_bytes(
|
|
||||||
(unsigned char *)buf+n, size-n, &nread) != 0) abort();
|
|
||||||
n += nread;
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
if (size > (size_t) 0U) {
|
if (size > (size_t) 0U) {
|
||||||
implementation->buf(buf, size);
|
implementation->buf(buf, size);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
unsigned char *p = buf;
|
unsigned char *p = buf;
|
||||||
size_t i;
|
size_t i;
|
||||||
|
Loading…
Reference in New Issue
Block a user