randombytes.h 166 B

12345678
  1. #include <sodium/randombytes.h>
  2. static inline int randombytes_wrap(unsigned char *b,size_t l)
  3. {
  4. randombytes(b,l);
  5. return 0;
  6. }
  7. #define randombytes randombytes_wrap