2018-07-30 02:07:02 +00:00
|
|
|
/* Copyright (c) 2017, Google Inc.
|
2015-09-24 20:52:02 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
|
|
|
|
|
|
|
#include <openssl/rand.h>
|
|
|
|
|
2018-07-30 02:07:02 +00:00
|
|
|
#if defined(OPENSSL_FUCHSIA) && !defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE)
|
2015-09-24 20:52:02 +00:00
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2018-07-30 02:07:02 +00:00
|
|
|
#include <zircon/syscalls.h>
|
2015-09-24 20:52:02 +00:00
|
|
|
|
2018-07-30 02:07:02 +00:00
|
|
|
#include "../fipsmodule/rand/internal.h"
|
2015-09-24 20:52:02 +00:00
|
|
|
|
|
|
|
void CRYPTO_sysrand(uint8_t *out, size_t requested) {
|
|
|
|
while (requested > 0) {
|
2018-07-30 02:07:02 +00:00
|
|
|
size_t output_bytes_this_pass = ZX_CPRNG_DRAW_MAX_LEN;
|
2015-09-24 20:52:02 +00:00
|
|
|
if (requested < output_bytes_this_pass) {
|
|
|
|
output_bytes_this_pass = requested;
|
|
|
|
}
|
2018-07-30 02:07:02 +00:00
|
|
|
size_t bytes_drawn;
|
|
|
|
zx_status_t status =
|
|
|
|
zx_cprng_draw(out, output_bytes_this_pass, &bytes_drawn);
|
|
|
|
if (status != ZX_OK) {
|
2015-09-24 20:52:02 +00:00
|
|
|
abort();
|
|
|
|
}
|
2018-07-30 02:07:02 +00:00
|
|
|
requested -= bytes_drawn;
|
|
|
|
out += bytes_drawn;
|
2015-09-24 20:52:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-30 02:07:02 +00:00
|
|
|
#endif // OPENSSL_FUCHSIA && !BORINGSSL_UNSAFE_DETERMINISTIC_MODE
|