#ifndef CRYPTO_CORE_H #define CRYPTO_CORE_H #define crypto_core_OUTBYTES 64 #define crypto_core_INBYTES 16 #define crypto_core_KEYBYTES 32 #define crypto_core_PADBYTES 16 #define crypto_core_ROUNDS 20 void crypto_core(unsigned char[crypto_core_OUTBYTES], const unsigned char[crypto_core_INBYTES], const unsigned char[crypto_core_KEYBYTES], const unsigned char[crypto_core_PADBYTES]); #endif /* CRYPTO_CORE_H */