Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lignes
353 B

  1. #ifndef FIPS202_H
  2. #define 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