Searched defs:pNonce (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
H A DFwdLockFile.c218 * @param[in] pNonce A reference to the nonce.
222 static void FwdLockFile_CalculateCounter(const unsigned char *pNonce, argument
228 unsigned char part = pNonce[i] + (unsigned char)(blockIndex >> (i * CHAR_BIT));
230 carry = (part < pNonce[i] || pCounter[i] < part) ? 1 : 0;
233 pCounter[i] = pNonce[i] + carry;
234 carry = (pCounter[i] < pNonce[i]) ? 1 : 0;

Completed in 51 milliseconds