2016-05-17 19:38:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
2016-04-06 10:19:55 +00:00
|
|
|
/*
|
|
|
|
* Licensed under the OpenSSL licenses, (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
* or in the file LICENSE in the source distribution.
|
|
|
|
*/
|
|
|
|
|
2018-03-05 22:45:44 +00:00
|
|
|
#ifndef HEADER_RAND_INT_H
|
|
|
|
# define HEADER_RAND_INT_H
|
|
|
|
|
|
|
|
# include <openssl/rand.h>
|
|
|
|
|
|
|
|
/* forward declaration */
|
|
|
|
typedef struct rand_pool_st RAND_POOL;
|
2016-04-06 10:19:55 +00:00
|
|
|
|
2016-04-12 11:20:16 +00:00
|
|
|
void rand_cleanup_int(void);
|
2017-08-31 21:16:22 +00:00
|
|
|
void rand_drbg_cleanup_int(void);
|
2017-08-06 22:12:28 +00:00
|
|
|
void rand_fork(void);
|
2018-03-05 22:45:44 +00:00
|
|
|
|
|
|
|
/* Hardware-based seeding functions. */
|
|
|
|
size_t rand_acquire_entropy_from_tsc(RAND_POOL *pool);
|
|
|
|
size_t rand_acquire_entropy_from_cpu(RAND_POOL *pool);
|
|
|
|
|
|
|
|
/* DRBG entropy callbacks. */
|
|
|
|
size_t rand_drbg_get_entropy(RAND_DRBG *drbg,
|
|
|
|
unsigned char **pout,
|
2018-02-18 18:26:55 +00:00
|
|
|
int entropy, size_t min_len, size_t max_len,
|
|
|
|
int prediction_resistance);
|
2018-03-05 22:45:44 +00:00
|
|
|
void rand_drbg_cleanup_entropy(RAND_DRBG *drbg,
|
|
|
|
unsigned char *out, size_t outlen);
|
|
|
|
size_t rand_drbg_get_additional_data(unsigned char **pout, size_t max_len);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RAND_POOL functions
|
|
|
|
*/
|
|
|
|
RAND_POOL *rand_pool_new(int entropy_requested, size_t min_len, size_t max_len);
|
|
|
|
void rand_pool_free(RAND_POOL *pool);
|
|
|
|
|
|
|
|
const unsigned char *rand_pool_buffer(RAND_POOL *pool);
|
|
|
|
unsigned char *rand_pool_detach(RAND_POOL *pool);
|
|
|
|
|
|
|
|
size_t rand_pool_entropy(RAND_POOL *pool);
|
|
|
|
size_t rand_pool_length(RAND_POOL *pool);
|
|
|
|
|
|
|
|
size_t rand_pool_entropy_available(RAND_POOL *pool);
|
|
|
|
size_t rand_pool_entropy_needed(RAND_POOL *pool);
|
|
|
|
size_t rand_pool_bytes_needed(RAND_POOL *pool, unsigned int entropy_per_byte);
|
|
|
|
size_t rand_pool_bytes_remaining(RAND_POOL *pool);
|
|
|
|
|
|
|
|
size_t rand_pool_add(RAND_POOL *pool,
|
|
|
|
const unsigned char *buffer, size_t len, size_t entropy);
|
|
|
|
unsigned char *rand_pool_add_begin(RAND_POOL *pool, size_t len);
|
|
|
|
size_t rand_pool_add_end(RAND_POOL *pool, size_t len, size_t entropy);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add random bytes to the pool to acquire requested amount of entropy
|
|
|
|
*
|
|
|
|
* This function is platform specific and tries to acquire the requested
|
|
|
|
* amount of entropy by polling platform specific entropy sources.
|
|
|
|
*
|
|
|
|
* If the function succeeds in acquiring at least |entropy_requested| bits
|
|
|
|
* of entropy, the total entropy count is returned. If it fails, it returns
|
|
|
|
* an entropy count of 0.
|
|
|
|
*/
|
|
|
|
size_t rand_pool_acquire_entropy(RAND_POOL *pool);
|
|
|
|
|
|
|
|
#endif
|