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.
|
- /*
- This code was taken from the SPHINCS reference implementation.
- Public domain.
- */
-
- #include "zerobytes.h"
-
- unsigned char *zerobytes(unsigned char *r,unsigned long long n)
- {
- volatile unsigned char *p=r;
- while (n--)
- *(p++) = 0;
- return r;
- }
|