/hal_stm32-latest/lib/stm32wb0/BLE_TransparentMode/System/Interfaces/ |
D | hw_aes.c | 90 HW_AES_ResultStatus HW_AES_Encrypt(const uint32_t *plainTextData, const uint32_t *key, uint32_t *en… in HW_AES_Encrypt() argument 104 BLUE->MANAESKEY0REG = key[0]; in HW_AES_Encrypt() 105 BLUE->MANAESKEY1REG = key[1]; in HW_AES_Encrypt() 106 BLUE->MANAESKEY2REG = key[2]; in HW_AES_Encrypt() 107 BLUE->MANAESKEY3REG = key[3]; in HW_AES_Encrypt()
|
D | hw_aes.h | 72 HW_AES_ResultStatus HW_AES_Encrypt(const uint32_t *plainTextData, const uint32_t *key, uint32_t *en…
|
/hal_stm32-latest/lib/stm32wba/BLE_TransparentMode/System/Interfaces/ |
D | hw_aes.c | 71 const uint8_t* key ) in HW_AES_SetKey() argument 76 memcpy( tmp, key, 16 ); in HW_AES_SetKey() 182 const uint8_t* key, in HW_AES_InitCcm() argument 192 memcpy( tmp, key, 16 ); in HW_AES_InitCcm()
|
D | hw.h | 107 const uint8_t* key ); 133 const uint8_t* key,
|
/hal_stm32-latest/stm32cube/stm32mp1xx/drivers/include/ |
D | stm32mp1xx_ll_hsem.h | 267 __STATIC_INLINE void LL_HSEM_SetKey(HSEM_TypeDef *HSEMx, uint32_t key) in LL_HSEM_SetKey() argument 269 WRITE_REG(HSEMx->KEYR, key << HSEM_KEYR_KEY_Pos); in LL_HSEM_SetKey() 292 __STATIC_INLINE void LL_HSEM_ResetAllLock(HSEM_TypeDef *HSEMx, uint32_t key, uint32_t core) in LL_HSEM_ResetAllLock() argument 294 WRITE_REG(HSEMx->CR, (key << HSEM_CR_KEY_Pos) | core); in LL_HSEM_ResetAllLock()
|
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/include/ |
D | stm32h7xx_ll_hsem.h | 276 __STATIC_INLINE void LL_HSEM_SetKey(HSEM_TypeDef *HSEMx, uint32_t key) in LL_HSEM_SetKey() argument 278 WRITE_REG(HSEMx->KEYR, key << HSEM_KEYR_KEY_Pos); in LL_HSEM_SetKey() 304 __STATIC_INLINE void LL_HSEM_ResetAllLock(HSEM_TypeDef *HSEMx, uint32_t key, uint32_t core) in LL_HSEM_ResetAllLock() argument 306 WRITE_REG(HSEMx->CR, (key << HSEM_CR_KEY_Pos) | core); in LL_HSEM_ResetAllLock()
|
/hal_stm32-latest/stm32cube/stm32wbaxx/drivers/include/ |
D | stm32wbaxx_ll_hsem.h | 291 __STATIC_INLINE void LL_HSEM_SetKey(HSEM_TypeDef *HSEMx, uint32_t key) in LL_HSEM_SetKey() argument 293 WRITE_REG(HSEMx->KEYR, key << HSEM_KEYR_KEY_Pos); in LL_HSEM_SetKey() 321 __STATIC_INLINE void LL_HSEM_ResetAllLock(HSEM_TypeDef *HSEMx, uint32_t key, uint32_t core, uint32_… in LL_HSEM_ResetAllLock() argument 323 WRITE_REG(HSEMx->CR, (key << HSEM_CR_KEY_Pos) | core | attribute); in LL_HSEM_ResetAllLock()
|
/hal_stm32-latest/stm32cube/stm32wlxx/drivers/include/ |
D | stm32wlxx_ll_hsem.h | 272 __STATIC_INLINE void LL_HSEM_SetKey(HSEM_TypeDef *HSEMx, uint32_t key) in LL_HSEM_SetKey() argument 274 WRITE_REG(HSEMx->KEYR, key << HSEM_KEYR_KEY_Pos); in LL_HSEM_SetKey() 300 __STATIC_INLINE void LL_HSEM_ResetAllLock(HSEM_TypeDef *HSEMx, uint32_t key, uint32_t core) in LL_HSEM_ResetAllLock() argument 302 WRITE_REG(HSEMx->CR, (key << HSEM_CR_KEY_Pos) | core); in LL_HSEM_ResetAllLock()
|
/hal_stm32-latest/stm32cube/stm32wbxx/drivers/include/ |
D | stm32wbxx_ll_hsem.h | 270 __STATIC_INLINE void LL_HSEM_SetKey(HSEM_TypeDef *HSEMx, uint32_t key) in LL_HSEM_SetKey() argument 272 WRITE_REG(HSEMx->KEYR, key << HSEM_KEYR_KEY_Pos); in LL_HSEM_SetKey() 298 __STATIC_INLINE void LL_HSEM_ResetAllLock(HSEM_TypeDef *HSEMx, uint32_t key, uint32_t core) in LL_HSEM_ResetAllLock() argument 300 WRITE_REG(HSEMx->CR, (key << HSEM_CR_KEY_Pos) | core); in LL_HSEM_ResetAllLock()
|
/hal_stm32-latest/lib/stm32wba/STM32_WPAN/ble/stack/include/ |
D | bleplat.h | 199 extern void BLEPLAT_AesEcbEncrypt( const uint8_t* key, 209 extern void BLEPLAT_AesCmacSetKey( const uint8_t* key ); 245 const uint8_t* key,
|
/hal_stm32-latest/stm32cube/stm32wb0x/drivers/src/ |
D | stm32wb0x_hal_radio.c | 1300 uint32_t key[4] ; in HAL_RADIO_EncryptPlainData() local 1307 …key[i] = ((uint32_t)Key[i * 4]) | ((uint32_t)Key[i * 4 + 1]) << 8 | ((uint32_t)Key[i * 4 + 2]) << … in HAL_RADIO_EncryptPlainData() 1311 BLUE->MANAESKEY0REG = key[3]; in HAL_RADIO_EncryptPlainData() 1312 BLUE->MANAESKEY1REG = key[2]; in HAL_RADIO_EncryptPlainData() 1313 BLUE->MANAESKEY2REG = key[1]; in HAL_RADIO_EncryptPlainData() 1314 BLUE->MANAESKEY3REG = key[0]; in HAL_RADIO_EncryptPlainData()
|
/hal_stm32-latest/lib/stm32wb0/BLE_TransparentMode/STM32_BLE/Target/ |
D | bleplat.c | 95 const uint32_t *key, in BLEPLAT_AesEcbEncrypt() argument 98 HW_AES_Encrypt(plainTextData, key, encryptedData); in BLEPLAT_AesEcbEncrypt()
|
/hal_stm32-latest/scripts/genpinctrl/ |
D | genpinctrl.py | 685 entries = OrderedDict(sorted(entries.items(), key=lambda kv: kv[0])) 691 key=lambda entry: (
|
/hal_stm32-latest/lib/stm32wb0/STM32_BLE/stack/include/ |
D | bleplat.h | 173 const uint32_t *key,
|