Вы не можете выбрать более 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