選択できるのは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. }