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.

13 line
361 B

  1. #ifndef FIPS202_H
  2. #define FIPS202_H
  3. #include <stdint.h>
  4. #define SHAKE128_RATE 168
  5. #define SHAKE256_RATE 136
  6. void shake128(unsigned char *output, unsigned int outputByteLen, const unsigned char *input, unsigned int inputByteLen);
  7. void shake256(unsigned char *output, unsigned int outputByteLen, const unsigned char *input, unsigned int inputByteLen);
  8. #endif