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.

14 lines
363 B

  1. #ifndef XMSS_FIPS202_H
  2. #define XMSS_FIPS202_H
  3. #define SHAKE128_RATE 168
  4. #define SHAKE256_RATE 136
  5. void shake128(unsigned char *out, unsigned long long outlen,
  6. const unsigned char *in, unsigned long long inlen);
  7. void shake256(unsigned char *out, unsigned long long outlen,
  8. const unsigned char *in, unsigned long long inlen);
  9. #endif