Home
last modified time | relevance | path

Searched refs:mKeyMaterial (Results 1 – 3 of 3) sorted by relevance

/external/openthread/src/core/mac/
Dmac_types.hpp492 const Key &GetKey(void) const { return static_cast<const Key &>(mKeyMaterial.mKey); } in GetKey()
501 KeyRef GetKeyRef(void) const { return mKeyMaterial.mKeyRef; } in GetKeyRef()
549 void SetKeyRef(KeyRef aKeyRef) { mKeyMaterial.mKeyRef = aKeyRef; } in SetKeyRef()
551 Key &GetKey(void) { return static_cast<Key &>(mKeyMaterial.mKey); } in GetKey()
552 void SetKey(const Key &aKey) { mKeyMaterial.mKey = aKey; } in SetKey()
/external/openthread/src/lib/spinel/
Dradio_spinel_impl.hpp1167 …SuccessOrExit(error = otPlatCryptoExportKey(aPrevKey->mKeyMaterial.mKeyRef, aPrevKey->mKeyMaterial in SetMacKey()
1168 sizeof(aPrevKey->mKeyMaterial.mKey.m8), &aKeySize)); in SetMacKey()
1169 …SuccessOrExit(error = otPlatCryptoExportKey(aCurrKey->mKeyMaterial.mKeyRef, aCurrKey->mKeyMaterial in SetMacKey()
1170 sizeof(aCurrKey->mKeyMaterial.mKey.m8), &aKeySize)); in SetMacKey()
1171 …SuccessOrExit(error = otPlatCryptoExportKey(aNextKey->mKeyMaterial.mKeyRef, aNextKey->mKeyMaterial in SetMacKey()
1172 sizeof(aNextKey->mKeyMaterial.mKey.m8), &aKeySize)); in SetMacKey()
1180 aKeyIdMode, aKeyId, aPrevKey->mKeyMaterial.mKey.m8, sizeof(otMacKey), in SetMacKey()
1181 … aCurrKey->mKeyMaterial.mKey.m8, sizeof(otMacKey), aNextKey->mKeyMaterial.mKey.m8, in SetMacKey()
1187 memcpy(mPrevKey.m8, aPrevKey->mKeyMaterial.mKey.m8, OT_MAC_KEY_SIZE); in SetMacKey()
1188 memcpy(mCurrKey.m8, aCurrKey->mKeyMaterial.mKey.m8, OT_MAC_KEY_SIZE); in SetMacKey()
[all …]
/external/openthread/include/openthread/platform/
Dradio.h221 } mKeyMaterial; member