Lines Matching refs:aadSegmentLength
121 static size_t AESCCMLPF3_processB1withAAD(const uint8_t *aad, size_t aadSegmentLength, size_t aadTo…
139 size_t aadSegmentLength,
584 static size_t AESCCMLPF3_processB1withAAD(const uint8_t *aad, size_t aadSegmentLength, size_t aadTo… in AESCCMLPF3_processB1withAAD() argument
586 size_t aadBytesProcessed = aadSegmentLength; in AESCCMLPF3_processB1withAAD()
606 if (aadSegmentLength == 1U) in AESCCMLPF3_processB1withAAD()
611 else if (aadSegmentLength <= B1_AAD_SMALL_BYTES) in AESCCMLPF3_processB1withAAD()
613 (void)memcpy((void *)&B1.bytes[2], (void *)aad, aadSegmentLength); in AESCCMLPF3_processB1withAAD()
1200 size_t aadSegmentLength, in AESCCMLPF3_processSegmentedCBCMAC() argument
1233 if (aadSegmentLength > 0U) in AESCCMLPF3_processSegmentedCBCMAC()
1235 aadBytesRemaining = aadSegmentLength; in AESCCMLPF3_processSegmentedCBCMAC()
1241 aadSegmentLength, in AESCCMLPF3_processSegmentedCBCMAC()
1267 const uint8_t *newAAD = &object->aad[aadSegmentLength - aadBytesRemaining]; in AESCCMLPF3_processSegmentedCBCMAC()
1298 AESCMACLPF3_processBlocks(&object->aad[aadSegmentLength - aadBytesRemaining], in AESCCMLPF3_processSegmentedCBCMAC()
1309 … AESCCMLPF3_processCBCMACFinalBlock(&object->aad[aadSegmentLength - aadBytesRemaining], in AESCCMLPF3_processSegmentedCBCMAC()
1316 … const uint8_t *aadRemaining = &object->aad[aadSegmentLength - AESCCMLPF3_AAD_BUFFER_SIZE]; in AESCCMLPF3_processSegmentedCBCMAC()