Cryptographic functions in C for IoT
#include "iot_crypto.h"
void app_main () {
uint8_t buf[8];
crypto_random_fill(buf, sizeof(buf));
// ..
}
See include/iot_crypto.h
for the public API.
MIT
Cryptographic functions in C for IoT
#include "iot_crypto.h"
void app_main () {
uint8_t buf[8];
crypto_random_fill(buf, sizeof(buf));
// ..
}
See include/iot_crypto.h
for the public API.
MIT