您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
250 B

  1. /*
  2. This code was taken from the SPHINCS reference implementation.
  3. Public domain.
  4. */
  5. #include "zerobytes.h"
  6. unsigned char *zerobytes(unsigned char *r,unsigned long long n)
  7. {
  8. volatile unsigned char *p=r;
  9. while (n--)
  10. *(p++) = 0;
  11. return r;
  12. }