// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2015-2020 Jason A. Donenfeld . All Rights Reserved. */ #include #include static inline bool __attribute__((__warn_unused_result__)) get_random_bytes(uint8_t *out, size_t len) { return RtlGenRandom(out, len); }