Update copyright year
[openssl.git] / crypto / include / internal / rand_int.h
1 /*
2  * Copyright 2016-2018 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 /*
11  * Licensed under the OpenSSL licenses, (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  * https://www.openssl.org/source/license.html
15  * or in the file LICENSE in the source distribution.
16  */
17
18 #ifndef HEADER_RAND_INT_H
19 # define HEADER_RAND_INT_H
20
21 # include <openssl/rand.h>
22
23 /* forward declaration */
24 typedef struct rand_pool_st RAND_POOL;
25
26 void rand_cleanup_int(void);
27 void rand_drbg_cleanup_int(void);
28 void drbg_delete_thread_state(void);
29 void rand_fork(void);
30
31 /* Hardware-based seeding functions. */
32 size_t rand_acquire_entropy_from_tsc(RAND_POOL *pool);
33 size_t rand_acquire_entropy_from_cpu(RAND_POOL *pool);
34
35 /* DRBG entropy callbacks. */
36 size_t rand_drbg_get_entropy(RAND_DRBG *drbg,
37                              unsigned char **pout,
38                              int entropy, size_t min_len, size_t max_len,
39                              int prediction_resistance);
40 void rand_drbg_cleanup_entropy(RAND_DRBG *drbg,
41                                unsigned char *out, size_t outlen);
42 size_t rand_drbg_get_nonce(RAND_DRBG *drbg,
43                            unsigned char **pout,
44                            int entropy, size_t min_len, size_t max_len);
45 void rand_drbg_cleanup_nonce(RAND_DRBG *drbg,
46                              unsigned char *out, size_t outlen);
47
48 size_t rand_drbg_get_additional_data(unsigned char **pout, size_t max_len);
49
50 void rand_drbg_cleanup_additional_data(unsigned char *out, size_t outlen);
51
52 /*
53  * RAND_POOL functions
54  */
55 RAND_POOL *rand_pool_new(int entropy_requested, size_t min_len, size_t max_len);
56 void rand_pool_free(RAND_POOL *pool);
57
58 const unsigned char *rand_pool_buffer(RAND_POOL *pool);
59 unsigned char *rand_pool_detach(RAND_POOL *pool);
60
61 size_t rand_pool_entropy(RAND_POOL *pool);
62 size_t rand_pool_length(RAND_POOL *pool);
63
64 size_t rand_pool_entropy_available(RAND_POOL *pool);
65 size_t rand_pool_entropy_needed(RAND_POOL *pool);
66 size_t rand_pool_bytes_needed(RAND_POOL *pool, unsigned int entropy_per_byte);
67 size_t rand_pool_bytes_remaining(RAND_POOL *pool);
68
69 int rand_pool_add(RAND_POOL *pool,
70                   const unsigned char *buffer, size_t len, size_t entropy);
71 unsigned char *rand_pool_add_begin(RAND_POOL *pool, size_t len);
72 int rand_pool_add_end(RAND_POOL *pool, size_t len, size_t entropy);
73
74
75 /*
76  * Add random bytes to the pool to acquire requested amount of entropy
77  *
78  * This function is platform specific and tries to acquire the requested
79  * amount of entropy by polling platform specific entropy sources.
80  *
81  * If the function succeeds in acquiring at least |entropy_requested| bits
82  * of entropy, the total entropy count is returned. If it fails, it returns
83  * an entropy count of 0.
84  */
85 size_t rand_pool_acquire_entropy(RAND_POOL *pool);
86
87 /*
88  * Add some application specific nonce data
89  *
90  * This function is platform specific and adds some application specific
91  * data to the nonce used for instantiating the drbg.
92  *
93  * This data currently consists of the process and thread id, and a high
94  * resolution timestamp. The data does not include an atomic counter,
95  * because that is added by the calling function rand_drbg_get_nonce().
96  *
97  * Returns 1 on success and 0 on failure.
98  */
99 int rand_pool_add_nonce_data(RAND_POOL *pool);
100
101
102 /*
103  * Add some platform specific additional data
104  *
105  * This function is platform specific and adds some random noise to the
106  * additional data used for generating random bytes and for reseeding
107  * the drbg.
108  *
109  * Returns 1 on success and 0 on failure.
110  */
111 int rand_pool_add_additional_data(RAND_POOL *pool);
112
113 #endif