Home
last modified time | relevance | path

Searched refs:otMacKeyMaterial (Results 1 – 7 of 7) sorted by relevance

/openthread-3.7.0/include/openthread/platform/
Dradio.h223 typedef struct otMacKeyMaterial struct
230 } otMacKeyMaterial; argument
274 const otMacKeyMaterial *mAesKey; ///< The key material used for AES-CCM frame security.
678 const otMacKeyMaterial *aPrevKey,
679 const otMacKeyMaterial *aCurrKey,
680 const otMacKeyMaterial *aNextKey,
/openthread-3.7.0/examples/platforms/simulation/
Dradio.c161 static otMacKeyMaterial sPrevKey;
162 static otMacKeyMaterial sCurrKey;
163 static otMacKeyMaterial sNextKey;
665 otMacKeyMaterial *key = NULL; in radioProcessTransmitSecurity()
1242 const otMacKeyMaterial *aPrevKey, in otPlatRadioSetMacKey()
1243 const otMacKeyMaterial *aCurrKey, in otPlatRadioSetMacKey()
1244 const otMacKeyMaterial *aNextKey, in otPlatRadioSetMacKey()
1254 memcpy(&sPrevKey, aPrevKey, sizeof(otMacKeyMaterial)); in otPlatRadioSetMacKey()
1255 memcpy(&sCurrKey, aCurrKey, sizeof(otMacKeyMaterial)); in otPlatRadioSetMacKey()
1256 memcpy(&sNextKey, aNextKey, sizeof(otMacKeyMaterial)); in otPlatRadioSetMacKey()
/openthread-3.7.0/src/core/radio/
Dradio_platform.cpp195 const otMacKeyMaterial *aPrevKey, in otPlatRadioSetMacKey()
196 const otMacKeyMaterial *aCurrKey, in otPlatRadioSetMacKey()
197 const otMacKeyMaterial *aNextKey, in otPlatRadioSetMacKey()
/openthread-3.7.0/src/lib/spinel/
Dradio_spinel.hpp721 const otMacKeyMaterial *aPrevKey,
722 const otMacKeyMaterial *aCurrKey,
723 const otMacKeyMaterial *aNextKey);
1194 static otError ReadMacKey(const otMacKeyMaterial &aKeyMaterial, otMacKey &aKey);
Dradio_spinel.cpp824 otError RadioSpinel::ReadMacKey(const otMacKeyMaterial &aKeyMaterial, otMacKey &aKey) in ReadMacKey()
838 const otMacKeyMaterial *aPrevKey, in SetMacKey()
839 const otMacKeyMaterial *aCurrKey, in SetMacKey()
840 const otMacKeyMaterial *aNextKey) in SetMacKey()
860 const otMacKeyMaterial *aPrevKey, in SetMacKey()
861 const otMacKeyMaterial *aCurrKey, in SetMacKey()
862 const otMacKeyMaterial *aNextKey) in SetMacKey()
/openthread-3.7.0/src/posix/platform/
Dradio.cpp809 const otMacKeyMaterial *aPrevKey, in otPlatRadioSetMacKey()
810 const otMacKeyMaterial *aCurrKey, in otPlatRadioSetMacKey()
811 const otMacKeyMaterial *aNextKey, in otPlatRadioSetMacKey()
/openthread-3.7.0/src/core/mac/
Dmac_types.hpp532 class KeyMaterial : public otMacKeyMaterial, public Unequatable<KeyMaterial>