Home
last modified time | relevance | path

Searched refs:SetKey (Results 1 – 11 of 11) sorted by relevance

/openthread-3.5.0/src/core/crypto/
Daes_ccm.hpp86 void SetKey(const Key &aKey) { mEcb.SetKey(aKey); } in SetKey() function in ot::Crypto::AesCcm
95 void SetKey(const uint8_t *aKey, uint16_t aKeyLength);
103 void SetKey(const Mac::KeyMaterial &aMacKey);
Daes_ccm.cpp45 void AesCcm::SetKey(const uint8_t *aKey, uint16_t aKeyLength) in SetKey() function in ot::Crypto::AesCcm
50 SetKey(cryptoKey); in SetKey()
53 void AesCcm::SetKey(const Mac::KeyMaterial &aMacKey) in SetKey() function in ot::Crypto::AesCcm
58 SetKey(cryptoKey); in SetKey()
Daes_ecb.hpp82 void SetKey(const Key &aKey);
Daes_ecb.cpp48 void AesEcb::SetKey(const Key &aKey) { SuccessOrAssert(otPlatCryptoAesSetKey(&mContext, &aKey)); } in SetKey() function in ot::Crypto::AesEcb
/openthread-3.5.0/tests/unit/
Dtest_aes.cpp70 aesCcm.SetKey(key, sizeof(key)); in TestMacBeaconFrame()
131 aesCcm.SetKey(key, sizeof(key)); in TestMacCommandFrame()
207 aesCcm.SetKey(kKey, sizeof(kKey)); in TestInPlaceAesCcmProcessing()
/openthread-3.5.0/src/core/api/
Dcrypto_api.cpp80 aesCcm.SetKey(AsCoreType(aKey)); in otCryptoAesCcm()
/openthread-3.5.0/src/core/utils/
Dflash.hpp164 void SetKey(uint16_t aKey) { mKey = aKey; } in SetKey() function in ot::Flash::RecordHeader
/openthread-3.5.0/src/core/mac/
Dmac_types.cpp309 SetKey(aKey); in SetFrom()
Dmac_types.hpp640 void SetKey(const Key &aKey) { mKeyMaterial.mKey = aKey; } in SetKey() function in ot::Mac::KeyMaterial
Dmac_frame.cpp1373 aesCcm.SetKey(GetAesKey()); in ProcessTransmitAesCcm()
1509 aesCcm.SetKey(aMacKey); in ProcessReceiveAesCcm()
/openthread-3.5.0/src/core/thread/
Dmle.cpp2405 aesCcm.SetKey(keySequence == Get<KeyManager>().GetCurrentKeySequence() in ProcessMessageSecurity()