Home
last modified time | relevance | path

Searched refs:mBlockLength (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/core/crypto/
Daes_ccm.cpp154 mBlockLength = blockLength; in Init()
168 if (mBlockLength == sizeof(mBlock)) in Header()
171 mBlockLength = 0; in Header()
174 mBlock[mBlockLength++] ^= headerBytes[i]; in Header()
182 if (mBlockLength != 0) in Header()
187 mBlockLength = 0; in Header()
226 if (mBlockLength == sizeof(mBlock)) in Payload()
229 mBlockLength = 0; in Payload()
232 mBlock[mBlockLength++] ^= byte; in Payload()
239 if (mBlockLength != 0) in Payload()
Daes_ccm.hpp196 uint16_t mBlockLength; member in ot::Crypto::AesCcm