trng_entropy_pool.h 350 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef TRNG_ENTROPY_POOL_H
  7. #define TRNG_ENTROPY_POOL_H
  8. #include <stdbool.h>
  9. #include <stdint.h>
  10. bool trng_pack_entropy(uint32_t nbits, uint64_t *out);
  11. void trng_entropy_pool_setup(void);
  12. #endif /* TRNG_ENTROPY_POOL_H */