您最多选择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