您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
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