You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
183 B

  1. #ifndef RANDOMBYTES_H
  2. #define RANDOMBYTES_H
  3. #include <stdint.h>
  4. #ifdef _WIN32
  5. #include <CRTDEFS.H>
  6. #else
  7. #include <unistd.h>
  8. #endif
  9. int randombytes(uint8_t *buf, size_t n);
  10. #endif