Home
last modified time | relevance | path

Searched refs:keyItem (Results 1 – 2 of 2) sorted by relevance

/loramac-node-latest/src/peripherals/atecc608a-tnglora-se/
Datecc608a-tnglora-se.c182 SecureElementStatus_t GetKeyByID( KeyIdentifier_t keyID, Key_t** keyItem ) in GetKeyByID() argument
188 *keyItem = &( KeyList[i] ); in GetKeyByID()
217 Key_t* keyItem; in ComputeCmac() local
218 SecureElementStatus_t retval = GetKeyByID( keyID, &keyItem ); in ComputeCmac()
226 atcab_aes_cmac_init( &atcaAesCmacCtx, keyItem->KeySlotNumber, keyItem->KeyBlockIndex ); in ComputeCmac()
/loramac-node-latest/src/peripherals/soft-se/
Dsoft-se.c53 static SecureElementStatus_t GetKeyByID( KeyIdentifier_t keyID, Key_t** keyItem ) in GetKeyByID() argument
59 *keyItem = &( SeNvm->KeyList[i] ); in GetKeyByID()
91 Key_t* keyItem; in ComputeCmac() local
92 SecureElementStatus_t retval = GetKeyByID( keyID, &keyItem ); in ComputeCmac()
96 AES_CMAC_SetKey( aesCmacCtx, keyItem->KeyValue ); in ComputeCmac()