rand.h 4.8 KB

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