blob: 4c433fa38c40024ee589b5dc12a1cbca076a417e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _IPXE_RANDOM_NZ_H
#define _IPXE_RANDOM_NZ_H
/** @file
*
* HMAC_DRBG algorithm
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <stdint.h>
extern int get_random_nz ( void *data, size_t len );
#endif /* _IPXE_RANDOM_NZ_H */
|