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.

пре 9 година
пре 9 година
123456789
  1. #ifndef XMSS_RANDOMBYTES_H
  2. #define XMSS_RANDOMBYTES_H
  3. /**
  4. * Tries to read xlen bytes from a source of randomness, and writes them to x.
  5. */
  6. void randombytes(unsigned char *x, unsigned long long xlen);
  7. #endif