2021-05-17 02:58:32 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2017-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2021-04-06 09:36:58 +05:30
|
|
|
#include "randombytes_internal.h"
|
2016-11-07 11:54:44 +11:00
|
|
|
#include "esp_system.h"
|
|
|
|
|
2021-02-25 05:21:05 +08:00
|
|
|
static const char *randombytes_esp32xx_implementation_name(void)
|
2016-11-07 11:54:44 +11:00
|
|
|
{
|
2021-02-25 05:21:05 +08:00
|
|
|
return CONFIG_IDF_TARGET;
|
2016-11-07 11:54:44 +11: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-25 05:21:05 +08:00
|
|
|
.implementation_name = randombytes_esp32xx_implementation_name,
|
2016-11-07 11:54:44 +11:00
|
|
|
.random = esp_random,
|
|
|
|
.stir = NULL,
|
|
|
|
.uniform = NULL,
|
2018-08-15 18:20:16 +10:00
|
|
|
.buf = esp_fill_random,
|
2016-11-07 11:54:44 +11:00
|
|
|
.close = NULL,
|
|
|
|
};
|