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.

random.h 198 B

4 years ago
123456789
  1. #ifndef __RANDOM_H__
  2. #define __RANDOM_H__
  3. // Generate random bytes and output the result to random_array
  4. int randombytes(unsigned char* random_array, unsigned long long nbytes);
  5. #endif