e476e00ca6
There is now a syscall for getting cryptographically secure random bytes. R=asiva@google.com Review URL: https://codereview.chromium.org/2204523002 .
35 lines
915 B
C++
35 lines
915 B
C++
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "platform/globals.h"
|
|
#if defined(TARGET_OS_FUCHSIA)
|
|
|
|
#include "bin/crypto.h"
|
|
|
|
#include <magenta/syscalls.h>
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
bool Crypto::GetRandomBytes(intptr_t count, uint8_t* buffer) {
|
|
intptr_t read = 0;
|
|
while (read < count) {
|
|
const intptr_t remaining = count - read;
|
|
const intptr_t len =
|
|
(MX_CPRNG_DRAW_MAX_LEN < remaining) ? MX_CPRNG_DRAW_MAX_LEN
|
|
: remaining;
|
|
const mx_ssize_t res = mx_cprng_draw(buffer + read, len);
|
|
if (res == ERR_INVALID_ARGS) {
|
|
return false;
|
|
}
|
|
read += res;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // defined(TARGET_OS_FUCHSIA)
|