blob: 9689142f8eb3be2ffd7f94ad41f132d505b02f83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#ifndef _IPXE_RBG_H
#define _IPXE_RBG_H
/** @file
*
* RBG mechanism
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <ipxe/drbg.h>
/** An RBG */
struct random_bit_generator {
/** DRBG state */
struct drbg_state state;
};
extern struct random_bit_generator rbg;
/**
* Generate bits using RBG
*
* @v additional Additional input
* @v additional_len Length of additional input
* @v prediction_resist Prediction resistance is required
* @v data Output buffer
* @v len Length of output buffer
* @ret rc Return status code
*
* This is the RBG_Generate function defined in ANS X9.82 Part 4
* (April 2011 Draft) Section 9.1.2.2.
*/
static inline int rbg_generate ( const void *additional, size_t additional_len,
int prediction_resist, void *data,
size_t len ) {
return drbg_generate ( &rbg.state, additional, additional_len,
prediction_resist, data, len );
}
#endif /* _IPXE_RBG_H */
|