2016-08-30 12:40:58 +00:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
|
|
#include "mbedtls/config.h"
|
|
|
|
#else
|
|
|
|
#include MBEDTLS_CONFIG_FILE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2018-08-15 08:20:16 +00:00
|
|
|
#include <esp_system.h>
|
2016-09-02 03:31:38 +00:00
|
|
|
|
2018-11-11 07:44:54 +00:00
|
|
|
#include "mbedtls/entropy_poll.h"
|
|
|
|
|
2018-08-15 08:20:16 +00:00
|
|
|
#ifndef MBEDTLS_ENTROPY_HARDWARE_ALT
|
|
|
|
#error "MBEDTLS_ENTROPY_HARDWARE_ALT should always be set in ESP-IDF"
|
|
|
|
#endif
|
2016-08-30 12:40:58 +00:00
|
|
|
|
|
|
|
int mbedtls_hardware_poll( void *data,
|
|
|
|
unsigned char *output, size_t len, size_t *olen )
|
|
|
|
{
|
2018-08-15 08:20:16 +00:00
|
|
|
esp_fill_random(output, len);
|
2016-09-02 03:31:38 +00:00
|
|
|
*olen = len;
|
|
|
|
return 0;
|
2016-08-30 12:40:58 +00:00
|
|
|
}
|
2018-08-15 08:20:16 +00:00
|
|
|
|
2016-08-30 12:40:58 +00:00
|
|
|
|