Home
last modified time | relevance | path

Searched refs:aNonceLength (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/src/core/crypto/
Daes_ccm.cpp63 uint8_t aNonceLength) in Init() argument
86 if (aNonceLength > 13) in Init()
88 aNonceLength = 13; in Init()
92 if (L < (15 - aNonceLength)) in Init()
94 L = 15 - aNonceLength; in Init()
98 if (aNonceLength > (15 - L)) in Init()
100 aNonceLength = 15 - L; in Init()
110 memcpy(&mBlock[1], nonceBytes, aNonceLength); in Init()
115 for (i = sizeof(mBlock) - 1; i > aNonceLength; i--) in Init()
146 memcpy(&mCtr[1], nonceBytes, aNonceLength); in Init()
[all …]
Daes_ccm.hpp119 uint8_t aNonceLength);
/openthread-latest/src/core/api/
Dcrypto_api.cpp64 uint8_t aNonceLength, in otCryptoAesCcm() argument
81 aesCcm.Init(aHeaderLength, aLength, aTagLength, aNonce, aNonceLength); in otCryptoAesCcm()
/openthread-latest/include/openthread/
Dcrypto.h97 uint8_t aNonceLength,