9fdd0973fe82110e30e304439d51c98292584e73
[openssl.git] / include / internal / rand.h
1 /*
2  * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #ifndef HEADER_DRBG_RAND_H
11 # define HEADER_DRBG_RAND_H
12
13 /* In CTR mode, use derivation function ctr_df */
14 #define RAND_DRBG_FLAG_CTR_USE_DF            0x2
15
16 /*
17  * Default security strength (in the sense of [NIST SP 800-90Ar1])
18  * of the default OpenSSL DRBG, and the corresponding NID.
19  *
20  * Currently supported values: 128, 192, 256
21  *
22  * TODO(DRBG): would be nice to have the strength configurable
23  */
24 # define RAND_DRBG_STRENGTH             128
25 # define RAND_DRBG_NID                  NID_aes_128_ctr
26
27 /*
28  * Object lifetime functions.
29  */
30 RAND_DRBG *RAND_DRBG_new(int type, unsigned int flags, RAND_DRBG *parent);
31 int RAND_DRBG_set(RAND_DRBG *drbg, int type, unsigned int flags);
32 int RAND_DRBG_instantiate(RAND_DRBG *drbg,
33                           const unsigned char *pers, size_t perslen);
34 int RAND_DRBG_uninstantiate(RAND_DRBG *drbg);
35 void RAND_DRBG_free(RAND_DRBG *drbg);
36
37 /*
38  * Object "use" functions.
39  */
40 int RAND_DRBG_reseed(RAND_DRBG *drbg,
41                      const unsigned char *adin, size_t adinlen);
42 int RAND_DRBG_generate(RAND_DRBG *drbg, unsigned char *out, size_t outlen,
43                        int prediction_resistance,
44                        const unsigned char *adin, size_t adinlen);
45 int RAND_DRBG_bytes(RAND_DRBG *drbg, unsigned char *out, size_t outlen);
46
47 int RAND_DRBG_set_reseed_interval(RAND_DRBG *drbg, unsigned int interval);
48 int RAND_DRBG_set_reseed_time_interval(RAND_DRBG *drbg, time_t interval);
49
50 RAND_DRBG *RAND_DRBG_get0_master(void);
51 RAND_DRBG *RAND_DRBG_get0_public(void);
52 RAND_DRBG *RAND_DRBG_get0_private(void);
53
54 /*
55  * EXDATA
56  */
57 #define RAND_DRBG_get_ex_new_index(l, p, newf, dupf, freef) \
58     CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_DRBG, l, p, newf, dupf, freef)
59 int RAND_DRBG_set_ex_data(RAND_DRBG *dctx, int idx, void *arg);
60 void *RAND_DRBG_get_ex_data(const RAND_DRBG *dctx, int idx);
61
62 /*
63  * Callback functions.  See comments in drbg_lib.c
64  */
65 typedef size_t (*RAND_DRBG_get_entropy_fn)(RAND_DRBG *ctx,
66                                            unsigned char **pout,
67                                            int entropy, size_t min_len,
68                                            size_t max_len);
69 typedef void (*RAND_DRBG_cleanup_entropy_fn)(RAND_DRBG *ctx,
70                                              unsigned char *out, size_t outlen);
71 typedef size_t (*RAND_DRBG_get_nonce_fn)(RAND_DRBG *ctx, unsigned char **pout,
72                                          int entropy, size_t min_len,
73                                          size_t max_len);
74 typedef void (*RAND_DRBG_cleanup_nonce_fn)(RAND_DRBG *ctx,
75                                            unsigned char *out, size_t outlen);
76
77 int RAND_DRBG_set_callbacks(RAND_DRBG *dctx,
78                             RAND_DRBG_get_entropy_fn get_entropy,
79                             RAND_DRBG_cleanup_entropy_fn cleanup_entropy,
80                             RAND_DRBG_get_nonce_fn get_nonce,
81                             RAND_DRBG_cleanup_nonce_fn cleanup_nonce);
82
83 /*
84  * RAND_POOL functions
85  */
86 RAND_POOL *RAND_POOL_new(int entropy_requested, size_t min_len, size_t max_len);
87 void RAND_POOL_free(RAND_POOL *pool);
88
89 const unsigned char *RAND_POOL_buffer(RAND_POOL *pool);
90 unsigned char *RAND_POOL_detach(RAND_POOL *pool);
91
92 size_t RAND_POOL_entropy(RAND_POOL *pool);
93 size_t RAND_POOL_length(RAND_POOL *pool);
94
95 size_t RAND_POOL_entropy_available(RAND_POOL *pool);
96 size_t RAND_POOL_entropy_needed(RAND_POOL *pool);
97 size_t RAND_POOL_bytes_needed(RAND_POOL *pool, unsigned int entropy_per_byte);
98 size_t RAND_POOL_bytes_remaining(RAND_POOL *pool);
99
100 size_t RAND_POOL_add(RAND_POOL *pool,
101                      const unsigned char *buffer, size_t len, size_t entropy);
102 unsigned char *RAND_POOL_add_begin(RAND_POOL *pool, size_t len);
103 size_t RAND_POOL_add_end(RAND_POOL *pool, size_t len, size_t entropy);
104
105
106 /*
107  * Add random bytes to the pool to acquire requested amount of entropy
108  *
109  * This function is platform specific and tries to acquire the requested
110  * amount of entropy by polling platform specific entropy sources.
111  *
112  * If the function succeeds in acquiring at least |entropy_requested| bits
113  * of entropy, the total entropy count is returned. If it fails, it returns
114  * an entropy count of 0.
115  */
116 size_t RAND_POOL_acquire_entropy(RAND_POOL *pool);
117 #endif