SolarEnergy/esp32_device/main/crypto.h
2024-07-27 16:15:35 +02:00

22 lines
237 B
C

/**
* Cryptographic functions
*/
#pragma once
#include <stdbool.h>
#ifdef __cplusplus
extern "C"
{
#endif
/**
* Generate device private key, if required
*/
bool crypto_gen_priv_key();
#ifdef __cplusplus
}
#endif