encrypt.h 244 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 32  // block 256 bits
#endif

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

#ifndef TAGSIZE
#define TAGSIZE BLOCKSIZE
#endif

#ifndef NONCESIZE
#define NONCESIZE BLOCKSIZE
#endif