-
Notifications
You must be signed in to change notification settings - Fork 7
/
drbg.h
96 lines (81 loc) · 3.3 KB
/
drbg.h
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* Copyright (C) 2022 - This file is part of libdrbg project
*
* Author: Ryad BENADJILA <[email protected]>
* Contributor: Arnaud EBALARD <[email protected]>
*
* This software is licensed under a dual BSD and GPL v2 license.
* See LICENSE file at the root folder of the project.
*/
#ifndef __DRBG_H__
#define __DRBG_H__
#include "drbg_common.h"
#include "hmac_drbg.h"
#include "hash_drbg.h"
#include "ctr_drbg.h"
drbg_error drbg_get_lengths(drbg_options *options,
uint32_t *drbg_strength,
uint32_t *min_entropy_input_length,
uint32_t *max_entropy_input_length,
uint32_t *max_pers_string_length,
uint32_t *max_addin_length,
uint32_t *max_asked_length,
drbg_type type);
/* The 4 main functions for DRBG (instantiate, reseed, generate and
* uninstantiate)
*/
drbg_error drbg_instantiate(drbg_ctx *ctx,
const uint8_t *pers_string, uint32_t pers_string_len,
uint32_t *req_inst_sec_strength,
bool prediction_resistance,
drbg_type type,
drbg_options *opt);
drbg_error drbg_reseed(drbg_ctx *ctx,
const uint8_t *addin, uint32_t addin_len,
bool prediction_resistance_req);
drbg_error drbg_generate(drbg_ctx *ctx,
const uint8_t *addin, uint32_t addin_len,
uint8_t *out, uint32_t out_len,
bool prediction_resistance_req);
/*** Advanced APIs with external entropy provided by the user ***/
drbg_error drbg_instantiate_with_user_entropy(drbg_ctx *ctx,
const uint8_t *pers_string, uint32_t pers_string_len,
const uint8_t *entropy_input, uint32_t entropy_input_len,
const uint8_t *nonce, uint32_t nonce_len,
uint32_t *req_inst_sec_strength,
bool prediction_resistance,
drbg_type type,
drbg_options *opt);
drbg_error drbg_reseed_with_user_entropy(drbg_ctx *ctx,
const uint8_t *entropy_input, uint32_t entropy_input_len,
const uint8_t *addin, uint32_t addin_len,
bool prediction_resistance_req);
drbg_error drbg_generate_with_user_entropy(drbg_ctx *ctx,
const uint8_t *addin, uint32_t addin_len,
const uint8_t *reseed_entropy, uint32_t reseed_entropy_len,
uint8_t *out, uint32_t out_len,
bool prediction_resistance_req);
drbg_error drbg_uninstantiate(drbg_ctx *ctx);
/* DRBG administrative information getters */
drbg_error drbg_get_min_entropy_input_length(drbg_ctx *ctx,
uint32_t *min_entropy_input_length);
drbg_error drbg_get_max_entropy_input_length(drbg_ctx *ctx,
uint32_t *max_entropy_input_length);
drbg_error drbg_get_max_pers_string_length(drbg_ctx *ctx,
uint32_t *max_pers_string_length);
drbg_error drbg_get_max_addin_length(drbg_ctx *ctx,
uint32_t *max_addin_length);
drbg_error drbg_get_drbg_strength(drbg_ctx *ctx,
uint32_t *drbg_strength);
drbg_error drbg_get_prediction_resistance(drbg_ctx *ctx,
bool *prediction_resistance);
drbg_error drbg_get_reseed_required_flag(drbg_ctx *ctx,
bool *reseed_required_flag);
drbg_error drbg_get_reseed_counter(drbg_ctx *ctx,
uint64_t *reseed_counter);
drbg_error drbg_get_reseed_interval(drbg_ctx *ctx,
uint64_t *reseed_interval);
drbg_error drbg_get_max_asked_length(drbg_ctx *ctx,
uint32_t *max_asked_length);
drbg_error drbg_check_instantiated(drbg_ctx *ctx);
#endif /* __DRBG_H__ */