Home
last modified time | relevance | path

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

/openthread-latest/include/openthread/platform/
Dradio.h212 typedef struct otMacKeyMaterial struct
219 } otMacKeyMaterial; typedef
262 const otMacKeyMaterial *mAesKey; ///< The key material used for AES-CCM frame security.
716 const otMacKeyMaterial *aPrevKey,
717 const otMacKeyMaterial *aCurrKey,
718 const otMacKeyMaterial *aNextKey,
/openthread-latest/examples/platforms/utils/
Dmac_frame.h354 otMacKeyMaterial mPrevKey;
355 otMacKeyMaterial mCurrKey;
356 otMacKeyMaterial mNextKey;
Dmac_frame.cpp316 otMacKeyMaterial *key = nullptr; in otMacFrameProcessTransmitSecurity()
/openthread-latest/src/core/radio/
Dradio_platform.cpp220 const otMacKeyMaterial *aPrevKey, in otPlatRadioSetMacKey()
221 const otMacKeyMaterial *aCurrKey, in otPlatRadioSetMacKey()
222 const otMacKeyMaterial *aNextKey, in otPlatRadioSetMacKey()
/openthread-latest/src/lib/spinel/
Dradio_spinel.hpp734 const otMacKeyMaterial *aPrevKey,
735 const otMacKeyMaterial *aCurrKey,
736 const otMacKeyMaterial *aNextKey);
1210 static otError ReadMacKey(const otMacKeyMaterial &aKeyMaterial, otMacKey &aKey);
Dradio_spinel.cpp863 otError RadioSpinel::ReadMacKey(const otMacKeyMaterial &aKeyMaterial, otMacKey &aKey) in ReadMacKey()
877 const otMacKeyMaterial *aPrevKey, in SetMacKey()
878 const otMacKeyMaterial *aCurrKey, in SetMacKey()
879 const otMacKeyMaterial *aNextKey) in SetMacKey()
899 const otMacKeyMaterial *aPrevKey, in SetMacKey()
900 const otMacKeyMaterial *aCurrKey, in SetMacKey()
901 const otMacKeyMaterial *aNextKey) in SetMacKey()
/openthread-latest/examples/platforms/simulation/
Dradio.c1147 const otMacKeyMaterial *aPrevKey, in otPlatRadioSetMacKey()
1148 const otMacKeyMaterial *aCurrKey, in otPlatRadioSetMacKey()
1149 const otMacKeyMaterial *aNextKey, in otPlatRadioSetMacKey()
1162 memcpy(&sRadioContext.mPrevKey, aPrevKey, sizeof(otMacKeyMaterial)); in otPlatRadioSetMacKey()
1163 memcpy(&sRadioContext.mCurrKey, aCurrKey, sizeof(otMacKeyMaterial)); in otPlatRadioSetMacKey()
1164 memcpy(&sRadioContext.mNextKey, aNextKey, sizeof(otMacKeyMaterial)); in otPlatRadioSetMacKey()
/openthread-latest/src/posix/platform/
Dradio.cpp908 const otMacKeyMaterial *aPrevKey, in otPlatRadioSetMacKey()
909 const otMacKeyMaterial *aCurrKey, in otPlatRadioSetMacKey()
910 const otMacKeyMaterial *aNextKey, in otPlatRadioSetMacKey()
Drcp_caps_diag.cpp254 otMacKeyMaterial prevKey; in HandleSpinelCommand()
255 otMacKeyMaterial curKey; in HandleSpinelCommand()
256 otMacKeyMaterial nextKey; in HandleSpinelCommand()
/openthread-latest/src/core/mac/
Dmac_types.hpp502 class KeyMaterial : public otMacKeyMaterial, public Unequatable<KeyMaterial>