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.

zerobytes.c 255 B

9 years ago
1234567891011121314
  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. }