blob: b19fed7c9ec341f80f1222d9ffbe7b4445f755ef [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/rand_util.h"
#include <zircon/syscalls.h>
namespace partition_alloc::internal::base {
void RandBytes(void* output, size_t output_length) {
zx_cprng_draw(output, output_length);
}
} // namespace partition_alloc::internal::base