rand.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (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. #ifndef OPENSSL_RAND_H
  10. # define OPENSSL_RAND_H
  11. # pragma once
  12. # include <openssl/macros.h>
  13. # ifndef OPENSSL_NO_DEPRECATED_3_0
  14. # define HEADER_RAND_H
  15. # endif
  16. # include <stdlib.h>
  17. # include <openssl/types.h>
  18. # include <openssl/e_os2.h>
  19. # include <openssl/randerr.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. struct rand_meth_st {
  24. int (*seed) (const void *buf, int num);
  25. int (*bytes) (unsigned char *buf, int num);
  26. void (*cleanup) (void);
  27. int (*add) (const void *buf, int num, double randomness);
  28. int (*pseudorand) (unsigned char *buf, int num);
  29. int (*status) (void);
  30. };
  31. int RAND_set_rand_method(const RAND_METHOD *meth);
  32. const RAND_METHOD *RAND_get_rand_method(void);
  33. # ifndef OPENSSL_NO_ENGINE
  34. int RAND_set_rand_engine(ENGINE *engine);
  35. # endif
  36. RAND_METHOD *RAND_OpenSSL(void);
  37. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  38. # define RAND_cleanup() while(0) continue
  39. # endif
  40. int RAND_bytes(unsigned char *buf, int num);
  41. int RAND_priv_bytes(unsigned char *buf, int num);
  42. /* Equivalent of RAND_priv_bytes() but additionally taking an OPENSSL_CTX */
  43. int RAND_priv_bytes_ex(OPENSSL_CTX *ctx, unsigned char *buf, int num);
  44. /* Equivalent of RAND_bytes() but additionally taking an OPENSSL_CTX */
  45. int RAND_bytes_ex(OPENSSL_CTX *ctx, unsigned char *buf, int num);
  46. DEPRECATEDIN_1_1_0(int RAND_pseudo_bytes(unsigned char *buf, int num))
  47. void RAND_seed(const void *buf, int num);
  48. void RAND_keep_random_devices_open(int keep);
  49. # if defined(__ANDROID__) && defined(__NDK_FPABI__)
  50. __NDK_FPABI__ /* __attribute__((pcs("aapcs"))) on ARM */
  51. # endif
  52. void RAND_add(const void *buf, int num, double randomness);
  53. int RAND_load_file(const char *file, long max_bytes);
  54. int RAND_write_file(const char *file);
  55. const char *RAND_file_name(char *file, size_t num);
  56. int RAND_status(void);
  57. # ifndef OPENSSL_NO_EGD
  58. int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes);
  59. int RAND_egd(const char *path);
  60. int RAND_egd_bytes(const char *path, int bytes);
  61. # endif
  62. int RAND_poll(void);
  63. # if defined(_WIN32) && (defined(BASETYPES) || defined(_WINDEF_H))
  64. /* application has to include <windows.h> in order to use these */
  65. DEPRECATEDIN_1_1_0(void RAND_screen(void))
  66. DEPRECATEDIN_1_1_0(int RAND_event(UINT, WPARAM, LPARAM))
  67. # endif
  68. #ifdef __cplusplus
  69. }
  70. #endif
  71. #endif