X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fcrypt.h;h=0a4030c8b6c462a768c3097d513332fdc9a56a5d;hb=d55c5e7cf9d7dd4b22132d07afc3cd823f43abb8;hp=e19009396d3802ff0f0121ddda9744e9cfacfa23;hpb=808f6f490d6e93002b5ac8e0ba201aa82b128fc4;p=umurmur.git diff --git a/src/crypt.h b/src/crypt.h index e190093..0a4030c 100644 --- a/src/crypt.h +++ b/src/crypt.h @@ -31,9 +31,8 @@ #ifndef CRYPTSTATE_H_34564356 #define CRYPTSTATE_H_34564356 -#ifdef HAVE_CONFIG_H -#include -#endif +#include "byteorder.h" +#include "config.h" #ifdef USE_POLARSSL #include @@ -53,12 +52,12 @@ typedef struct CryptState { uint8_t encrypt_iv[AES_BLOCK_SIZE]; uint8_t decrypt_iv[AES_BLOCK_SIZE]; uint8_t decrypt_history[0x100]; - + unsigned int uiGood; unsigned int uiLate; unsigned int uiLost; unsigned int uiResync; - + unsigned int uiRemoteGood; unsigned int uiRemoteLate; unsigned int uiRemoteLost; @@ -72,7 +71,7 @@ typedef struct CryptState { #endif etimer_t tLastGood; etimer_t tLastRequest; - bool_t bInit; + bool_t bInit; } cryptState_t; void CryptState_init(cryptState_t *cs);