Home | History | Annotate | Download | only in decoder

Lines Matching refs:blockIndex

72     uint64_t blockIndex;
216 * @param[in] blockIndex The index number of the block.
220 uint64_t blockIndex,
224 for (; i < sizeof blockIndex; ++i) {
225 unsigned char part = pNonce[i] + (unsigned char)(blockIndex >> (i * CHAR_BIT));
243 uint64_t blockIndex = pSession->filePos / AES_BLOCK_SIZE;
245 if (blockIndex != pSession->blockIndex) {
248 FwdLockFile_CalculateCounter(pSession->pEncryptedSessionKey, blockIndex, counter);
250 pSession->blockIndex = blockIndex;
287 pSession->blockIndex = INVALID_BLOCK_INDEX;