]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/internal/rand.h
Add RAND_DRBG_bytes
[thirdparty/openssl.git] / include / internal / rand.h
CommitLineData
12fb8c3d
RS
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
75e2c877 13/* In CTR mode, use derivation function ctr_df */
12fb8c3d
RS
14#define RAND_DRBG_FLAG_CTR_USE_DF 0x2
15
c16de9d8
DMSP
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
75e2c877
RS
27/*
28 * Object lifetime functions.
29 */
30RAND_DRBG *RAND_DRBG_new(int type, unsigned int flags, RAND_DRBG *parent);
31int RAND_DRBG_set(RAND_DRBG *drbg, int type, unsigned int flags);
32int RAND_DRBG_instantiate(RAND_DRBG *drbg,
12fb8c3d 33 const unsigned char *pers, size_t perslen);
75e2c877
RS
34int RAND_DRBG_uninstantiate(RAND_DRBG *drbg);
35void RAND_DRBG_free(RAND_DRBG *drbg);
36
37/*
38 * Object "use" functions.
39 */
40int RAND_DRBG_reseed(RAND_DRBG *drbg,
41 const unsigned char *adin, size_t adinlen);
42int RAND_DRBG_generate(RAND_DRBG *drbg, unsigned char *out, size_t outlen,
12fb8c3d
RS
43 int prediction_resistance,
44 const unsigned char *adin, size_t adinlen);
20928ff6
KR
45int RAND_DRBG_bytes(RAND_DRBG *drbg, unsigned char *out, size_t outlen);
46
a93ba405 47int RAND_DRBG_set_reseed_interval(RAND_DRBG *drbg, unsigned int interval);
08a65d96 48int RAND_DRBG_set_reseed_time_interval(RAND_DRBG *drbg, time_t interval);
a93ba405
DMSP
49
50RAND_DRBG *RAND_DRBG_get0_master(void);
51RAND_DRBG *RAND_DRBG_get0_public(void);
52RAND_DRBG *RAND_DRBG_get0_private(void);
75e2c877
RS
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)
59int RAND_DRBG_set_ex_data(RAND_DRBG *dctx, int idx, void *arg);
60void *RAND_DRBG_get_ex_data(const RAND_DRBG *dctx, int idx);
12fb8c3d 61
75e2c877
RS
62/*
63 * Callback functions. See comments in drbg_lib.c
64 */
65typedef size_t (*RAND_DRBG_get_entropy_fn)(RAND_DRBG *ctx,
66 unsigned char **pout,
16960a9b
BK
67 int entropy, size_t min_len,
68 size_t max_len);
75e2c877 69typedef void (*RAND_DRBG_cleanup_entropy_fn)(RAND_DRBG *ctx,
6969a3f4 70 unsigned char *out, size_t outlen);
75e2c877 71typedef size_t (*RAND_DRBG_get_nonce_fn)(RAND_DRBG *ctx, unsigned char **pout,
16960a9b
BK
72 int entropy, size_t min_len,
73 size_t max_len);
6969a3f4
DMSP
74typedef void (*RAND_DRBG_cleanup_nonce_fn)(RAND_DRBG *ctx,
75 unsigned char *out, size_t outlen);
16960a9b 76
75e2c877 77int RAND_DRBG_set_callbacks(RAND_DRBG *dctx,
16960a9b
BK
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);
12fb8c3d 82
c16de9d8
DMSP
83/*
84 * RAND_POOL functions
85 */
86RAND_POOL *RAND_POOL_new(int entropy_requested, size_t min_len, size_t max_len);
87void RAND_POOL_free(RAND_POOL *pool);
88
89const unsigned char *RAND_POOL_buffer(RAND_POOL *pool);
90unsigned char *RAND_POOL_detach(RAND_POOL *pool);
91
92size_t RAND_POOL_entropy(RAND_POOL *pool);
93size_t RAND_POOL_length(RAND_POOL *pool);
94
95size_t RAND_POOL_entropy_available(RAND_POOL *pool);
96size_t RAND_POOL_entropy_needed(RAND_POOL *pool);
97size_t RAND_POOL_bytes_needed(RAND_POOL *pool, unsigned int entropy_per_byte);
98size_t RAND_POOL_bytes_remaining(RAND_POOL *pool);
99
100size_t RAND_POOL_add(RAND_POOL *pool,
101 const unsigned char *buffer, size_t len, size_t entropy);
102unsigned char *RAND_POOL_add_begin(RAND_POOL *pool, size_t len);
103size_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 */
116size_t RAND_POOL_acquire_entropy(RAND_POOL *pool);
12fb8c3d 117#endif