5#include "sw/device/silicon_creator/lib/nonce.h"
7#include "sw/device/silicon_creator/lib/drivers/rnd.h"
9void nonce_new(nonce_t *
nonce) {
10 nonce->value[0] = rnd_uint32();
11 nonce->value[1] = rnd_uint32();
14extern bool nonce_equal(
const nonce_t *a,
const nonce_t *b);