Home | History | Annotate | Download | only in decoder

Lines Matching defs:blockIndex

72     uint64_t blockIndex;
219 * @param[in] blockIndex The index number of the block.
223 uint64_t blockIndex,
227 for (; i < sizeof blockIndex; ++i) {
228 unsigned char part = pNonce[i] + (unsigned char)(blockIndex >> (i * CHAR_BIT));
246 uint64_t blockIndex = pSession->filePos / AES_BLOCK_SIZE;
248 if (blockIndex != pSession->blockIndex) {
251 FwdLockFile_CalculateCounter(pSession->pEncryptedSessionKey, blockIndex, counter);
253 pSession->blockIndex = blockIndex;
290 pSession->blockIndex = INVALID_BLOCK_INDEX;