![]() |
Contiki-NG
|
An OFB-AES-128-based CSPRNG. More...
#include "contiki.h"#include "lib/aes-128.h"#include <stddef.h>#include <stdint.h>#include <stdbool.h>Go to the source code of this file.
Data Structures | |
| struct | csprng_seed |
| This is the structure of a seed. More... | |
Functions | |
| void | csprng_feed (struct csprng_seed *new_seed) |
| Mixes a new seed with the current one. | |
| bool | csprng_rand (uint8_t *result, size_t len) |
| Generates a cryptographic random number. | |
An OFB-AES-128-based CSPRNG.
Definition in file csprng.h.