HomeSort by relevance Sort by last modified time
    Searched refs:pNonce (Results 1 - 3 of 3) sorted by null

  /hardware/ti/omap4-aah/security/tf_daemon/
service_delegation_protocol.h 103 uint8_t pNonce[16];
delegation_client.c 137 uint8_t pNonce[16];
748 memcpy(pMessages[nIndex].pNonce , pInstruction->pNonce, 16);
757 memcpy(pInstruction->pNonce,pMessages[0].pNonce , 16);
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.c 218 * @param[in] pNonce A reference to the nonce.
222 static void FwdLockFile_CalculateCounter(const unsigned char *pNonce,
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 41 milliseconds