encrypt.h 242 Bytes
Newer Older
lwc-tester committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef BLOCKSIZE
#define BLOCKSIZE 8  // block 64 bits
#endif

#ifndef KEYSIZE
#define KEYSIZE 16 // key 128 bits 
#endif

#ifndef TAGSIZE
#define TAGSIZE BLOCKSIZE
#endif

#ifndef NONCESIZE
#define NONCESIZE BLOCKSIZE
#endif