#ifndef CRYPTO_CORE_H #define CRYPTO_CORE_H #include #define crypto_core_OUTWORDS 16 #define crypto_core_INWORDS 4 #define crypto_core_KEYWORDS 8 #define crypto_core_PADWORDS 4 #define crypto_core_ROUNDS 12 void crypto_core(uint32_t[crypto_core_OUTWORDS], const uint32_t[crypto_core_INWORDS], const uint32_t[crypto_core_KEYWORDS], const uint32_t[crypto_core_PADWORDS]); #endif /* CRYPTO_CORE_H */