2021-05-16 20:58:32 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2017-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2021-04-06 00:06:58 -04:00
|
|
|
#include "randombytes_internal.h"
|
2016-11-06 19:54:44 -05:00
|
|
|
#include "esp_system.h"
|
|
|
|
|
2021-02-24 16:21:05 -05:00
|
|
|
static const char *randombytes_esp32xx_implementation_name(void)
|
2016-11-06 19:54:44 -05:00
|
|
|
{
|
2021-02-24 16:21:05 -05:00
|
|
|
return CONFIG_IDF_TARGET;
|
2016-11-06 19:54:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Plug the ESP32 hardware RNG into libsodium's custom RNG support, as per
|
|
|
|
https://download.libsodium.org/doc/advanced/custom_rng.html
|
|
|
|
|
|
|
|
Note that this RNG is selected by default (see randombytes_default.h), so there
|
|
|
|
is no need to call randombytes_set_implementation().
|
|
|
|
*/
|
|
|
|
const struct randombytes_implementation randombytes_esp32_implementation = {
|
2021-02-24 16:21:05 -05:00
|
|
|
.implementation_name = randombytes_esp32xx_implementation_name,
|
2016-11-06 19:54:44 -05:00
|
|
|
.random = esp_random,
|
|
|
|
.stir = NULL,
|
|
|
|
.uniform = NULL,
|
2018-08-15 04:20:16 -04:00
|
|
|
.buf = esp_fill_random,
|
2016-11-06 19:54:44 -05:00
|
|
|
.close = NULL,
|
|
|
|
};
|