1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #ifndef NRF_CRYPTO_RNG_BACKEND_H__
- #define NRF_CRYPTO_RNG_BACKEND_H__
- #include "cc310_backend_rng.h"
- #include "nrf_hw_backend_rng.h"
- #include "nrf_hw_backend_rng_mbedtls.h"
- #include "optiga_backend_rng.h"
- #if !NRF_MODULE_ENABLED(NRF_CRYPTO_RNG)
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef nrf_crypto_rng_internal_context_t nrf_crypto_backend_rng_context_t;
- typedef struct
- {
- uint32_t reserved;
- } nrf_crypto_backend_rng_temp_buffer_t;
- #ifdef __cplusplus
- }
- #endif
- #endif
- #endif
|