blob: fab2367d20c79b72a3e230d619fbe3dc773f9032 [file] [log] [blame]
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -05001/*
2 * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef TRNG_ENTROPY_POOL_H
8#define TRNG_ENTROPY_POOL_H
9
10#include <stdbool.h>
11#include <stdint.h>
12
13bool trng_pack_entropy(uint32_t nbits, uint64_t *out);
14void trng_entropy_pool_setup(void);
15
16#endif /* TRNG_ENTROPY_POOL_H */