bufl 413 tools/packfi2/aes128.c uint32_t *bufl = (uint32_t *)buffer; bufl 417 tools/packfi2/aes128.c for( i = 0; i < 4; i++ ) bufl[i] ^= xorl[i]; bufl 418 tools/packfi2/aes128.c aes128_encrypt_block(bufl, bufl, expkey ); // encrypt current block bufl 419 tools/packfi2/aes128.c memcpy( xorl, bufl, 16 ); bufl 420 tools/packfi2/aes128.c bufl += 4; bufl 430 tools/packfi2/aes128.c uint32_t *bufl = (uint32_t *)buffer; bufl 434 tools/packfi2/aes128.c memcpy( tmpl, bufl, 16 ); bufl 435 tools/packfi2/aes128.c aes128_decrypt_block(bufl, bufl, expkey ); // decrypt current block bufl 436 tools/packfi2/aes128.c for( i = 0; i < 4; i++ ) bufl[i] ^= xorl[i]; bufl 438 tools/packfi2/aes128.c bufl += 4;