summaryrefslogtreecommitdiffstats
path: root/src/include/random.h
blob: 5be918fa77544643dabc478f211c71811e89a9ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _RANDOM_H_
#define _RANDOM_H_

#include <types.h>

/*
 * Generates a 32/64 bit random number respectively.
 * return 0 on success and -1 on error.
 */
enum cb_err get_random_number_32(uint32_t *rand);
enum cb_err get_random_number_64(uint64_t *rand);

#endif /* _RANDOM_H_ */