From 9e293b2e1f0215516a52764775af0bebd9c01ac1 Mon Sep 17 00:00:00 2001 From: lly Date: Mon, 8 Jun 2020 20:28:31 +0800 Subject: [PATCH] ble_mesh: Mark platform related default RNG as 0 --- .../tinycrypt/include/tinycrypt/ecc_platform_specific.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include/tinycrypt/ecc_platform_specific.h b/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include/tinycrypt/ecc_platform_specific.h index 25d725b93..972e5f7fe 100644 --- a/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include/tinycrypt/ecc_platform_specific.h +++ b/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include/tinycrypt/ecc_platform_specific.h @@ -74,7 +74,7 @@ * for some platforms, such as Unix and Linux. For other platforms, you may need * to provide another PRNG function. */ -#define default_RNG_defined 1 +#define default_RNG_defined 0 int default_CSPRNG(uint8_t *dest, unsigned int size);