devurandom.h 376 B

123456789101112131415161718192021222324
  1. /*
  2. randombytes/devurandom.h version 20080713
  3. D. J. Bernstein
  4. Public domain.
  5. */
  6. #ifndef randombytes_devurandom_H
  7. #define randombytes_devurandom_H
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. extern void randombytes(unsigned char *,unsigned long long);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #ifndef randombytes_implementation
  16. #define randombytes_implementation "devurandom"
  17. #endif
  18. #endif