AES_BLOCKSIZE
while (ep - addr > AES_BLOCKSIZE) {
memcpy(buf, addr, AES_BLOCKSIZE);
addr += AES_BLOCKSIZE;
uint8_t digest[AES_BLOCKSIZE];
static const uint8_t k1seed[AES_BLOCKSIZE] =
static const uint8_t k2seed[AES_BLOCKSIZE] =
static const uint8_t k3seed[AES_BLOCKSIZE] =
uint8_t k1[AES_BLOCKSIZE];
uint8_t buf[AES_BLOCKSIZE];
uint8_t e[AES_BLOCKSIZE];
uint8_t buf[AES_BLOCKSIZE];
uint8_t k2[AES_BLOCKSIZE];
uint8_t k3[AES_BLOCKSIZE];