RandomSeed.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. */
  15. #ifndef RandomSeed_H
  16. #define RandomSeed_H
  17. #include "memory/Allocator.h"
  18. #include "util/log/Log.h"
  19. #include "util/Linker.h"
  20. Linker_require("crypto/random/seed/RandomSeed.c")
  21. #include <stdint.h>
  22. typedef struct RandomSeed_s RandomSeed_t;
  23. typedef RandomSeed_t* (* RandomSeed_Provider)(struct Allocator* alloc);
  24. typedef int (* RandomSeed_Get)(RandomSeed_t* context, uint64_t buff[8]);
  25. struct RandomSeed_s
  26. {
  27. /**
  28. * Get some random numbers.
  29. *
  30. * @param context the seed context.
  31. * @param buff an array of uint32_t.
  32. * @param count the number of 32 bit elements in the array.
  33. */
  34. RandomSeed_Get get;
  35. /** A human friendly name for the random generator seed provider. */
  36. const char* name;
  37. };
  38. RandomSeed_t* RandomSeed_new(RandomSeed_Provider* providers,
  39. int providerCount,
  40. struct Log* logger,
  41. struct Allocator* alloc);
  42. int RandomSeed_get(RandomSeed_t* rs, uint64_t buffer[8]);
  43. #endif