選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

randombytes.h 211 B

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