Searched refs:otMacKeyMaterial (Results 1 – 7 of 7) sorted by relevance
/openthread-3.7.0/include/openthread/platform/ |
D | radio.h | 223 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/ |
D | radio.c | 161 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/ |
D | radio_platform.cpp | 195 const otMacKeyMaterial *aPrevKey, in otPlatRadioSetMacKey() 196 const otMacKeyMaterial *aCurrKey, in otPlatRadioSetMacKey() 197 const otMacKeyMaterial *aNextKey, in otPlatRadioSetMacKey()
|
/openthread-3.7.0/src/lib/spinel/ |
D | radio_spinel.hpp | 721 const otMacKeyMaterial *aPrevKey, 722 const otMacKeyMaterial *aCurrKey, 723 const otMacKeyMaterial *aNextKey); 1194 static otError ReadMacKey(const otMacKeyMaterial &aKeyMaterial, otMacKey &aKey);
|
D | radio_spinel.cpp | 824 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/ |
D | radio.cpp | 809 const otMacKeyMaterial *aPrevKey, in otPlatRadioSetMacKey() 810 const otMacKeyMaterial *aCurrKey, in otPlatRadioSetMacKey() 811 const otMacKeyMaterial *aNextKey, in otPlatRadioSetMacKey()
|
/openthread-3.7.0/src/core/mac/ |
D | mac_types.hpp | 532 class KeyMaterial : public otMacKeyMaterial, public Unequatable<KeyMaterial>
|