Lines Matching refs:nonceLength
117 uint8_t nonceLength,
137 static void AESCCMLPF3_processCTRCounterBlock(const uint8_t *nonce, uint8_t nonceLength, uint8_t co…
521 uint8_t nonceLength, in AESCCMLPF3_processB0() argument
552 B0.words[0] = (uint32_t)14U - (uint32_t)nonceLength; in AESCCMLPF3_processB0()
576 (void)memcpy(&B0.bytes[1], nonce, nonceLength); in AESCCMLPF3_processB0()
643 operation->nonceLength, in AESCCMLPF3_processOneStepCBCMACPolling()
728 AESCCMLPF3_processCTRCounterBlock(operation->nonce, operation->nonceLength, (uint8_t)0U); in AESCCMLPF3_processOneStepCTRPolling()
816 …DebugP_assert(operation->nonce && (operation->nonceLength >= 7U) && (operation->nonceLength <= 13U… in AESCCMLPF3_oneStepOperation()
836 if ((operation->nonceLength < (uint8_t)7U) || (operation->nonceLength > (uint8_t)13U)) in AESCCMLPF3_oneStepOperation()
903 object->nonceLength = operation->nonceLength; in AESCCMLPF3_oneStepOperation()
1151 int_fast16_t AESCCM_setNonce(AESCCM_Handle handle, const uint8_t *nonce, size_t nonceLength) in AESCCM_setNonce() argument
1171 if ((nonceLength < 7U) || (nonceLength > 13U)) in AESCCM_setNonce()
1177 object->nonceLength = (uint8_t)nonceLength; in AESCCM_setNonce()
1185 …t AESCCM_generateNonce(AESCCM_Handle handle, uint8_t *nonce, size_t nonceSize, size_t *nonceLength) in AESCCM_generateNonce() argument
1190 DebugP_assert(nonceLength); in AESCCM_generateNonce()
1218 object->nonceLength, in AESCCMLPF3_processSegmentedCBCMAC()
1410 static void AESCCMLPF3_processCTRCounterBlock(const uint8_t *nonce, uint8_t nonceLength, uint8_t co… in AESCCMLPF3_processCTRCounterBlock() argument
1439 counter.bytes[0] = (uint8_t)14U - nonceLength; in AESCCMLPF3_processCTRCounterBlock()
1441 (void)memcpy((void *)&counter.bytes[1], (void *)nonce, nonceLength); in AESCCMLPF3_processCTRCounterBlock()
1464 AESCCMLPF3_processCTRCounterBlock(object->nonce, object->nonceLength, (uint8_t)0U); in AESCCMLPF3_processTagCTR()
1506 AESCCMLPF3_processCTRCounterBlock(object->nonce, object->nonceLength, (uint8_t)1U); in AESCCMLPF3_processSegmentedCTR()
2167 object->nonceLength = 0; in AESCCM_cancelOperation()
2385 …DebugP_assert(operation->nonce && (operation->nonceLength >= 7U) && (operation->nonceLength <= 13U… in AESCCMLPF3HSM_oneStepOperation()
2395 if ((operation->nonceLength < (uint8_t)7U) || (operation->nonceLength > (uint8_t)13U)) in AESCCMLPF3HSM_oneStepOperation()
2435 object->nonceLength = operation->nonceLength; in AESCCMLPF3HSM_oneStepOperation()