rand32.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Copyright (c) 2013-2014 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Random number generator header file
  9. *
  10. * This header file declares prototypes for the kernel's random number
  11. * generator APIs.
  12. *
  13. * Typically, a platform enables the appropriate source for the random
  14. * number generation based on the hardware platform's capabilities or
  15. * (for testing purposes only) enables the TEST_RANDOM_GENERATOR
  16. * configuration option.
  17. */
  18. #ifndef ZEPHYR_INCLUDE_RANDOM_RAND32_H_
  19. #define ZEPHYR_INCLUDE_RANDOM_RAND32_H_
  20. #include <zephyr/types.h>
  21. #include <stddef.h>
  22. #include <kernel.h>
  23. /**
  24. * @brief Random Function APIs
  25. * @defgroup random_api Random Function APIs
  26. * @ingroup crypto
  27. * @{
  28. */
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /**
  33. * @brief Return a 32-bit random value that should pass general
  34. * randomness tests.
  35. *
  36. * @note The random value returned is not a cryptographically secure
  37. * random number value.
  38. *
  39. * @return 32-bit random value.
  40. */
  41. __syscall uint32_t sys_rand32_get(void);
  42. /**
  43. * @brief Fill the destination buffer with random data values that should
  44. * pass general randomness tests.
  45. *
  46. * @note The random values returned are not considered cryptographically
  47. * secure random number values.
  48. *
  49. * @param [out] dst destination buffer to fill with random data.
  50. * @param len size of the destination buffer.
  51. *
  52. */
  53. __syscall void sys_rand_get(void *dst, size_t len);
  54. /**
  55. * @brief Fill the destination buffer with cryptographically secure
  56. * random data values.
  57. *
  58. * @note If the random values requested do not need to be cryptographically
  59. * secure then use sys_rand_get() instead.
  60. *
  61. * @param [out] dst destination buffer to fill.
  62. * @param len size of the destination buffer.
  63. *
  64. * @return 0 if success, -EIO if entropy reseed error
  65. *
  66. */
  67. __syscall int sys_csrand_get(void *dst, size_t len);
  68. #ifdef __cplusplus
  69. }
  70. #endif
  71. /**
  72. * @}
  73. */
  74. #include <syscalls/rand32.h>
  75. #endif /* ZEPHYR_INCLUDE_RANDOM_RAND32_H_ */