Home
last modified time | relevance | path

Searched refs:hhash (Results 1 – 4 of 4) sorted by relevance

/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_hash.c250 static HAL_StatusTypeDef HASH_WaitOnFlagUntilTimeout(HASH_HandleTypeDef *hhash, uint32_t Flag, Flag…
251 static HAL_StatusTypeDef HASH_WriteData(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Siz…
252 static HAL_StatusTypeDef HASH_IT(HASH_HandleTypeDef *hhash);
253 static uint32_t HASH_Write_Block_Data(HASH_HandleTypeDef *hhash);
254 static HAL_StatusTypeDef HMAC_Processing(HASH_HandleTypeDef *hhash, uint32_t Timeout);
301 HAL_StatusTypeDef HAL_HASH_Init(HASH_HandleTypeDef *hhash) in HAL_HASH_Init() argument
304 assert_param(IS_HASH_DATATYPE(hhash->Init.DataType)); in HAL_HASH_Init()
307 if(hhash == NULL) in HAL_HASH_Init()
313 if (hhash->State == HAL_HASH_STATE_RESET) in HAL_HASH_Init()
316 hhash->Lock = HAL_UNLOCKED; in HAL_HASH_Init()
[all …]
Dstm32l4xx_hal_hash_ex.c159 HAL_StatusTypeDef HAL_HASHEx_SHA224_Start(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t S… in HAL_HASHEx_SHA224_Start() argument
161 return HASH_Start(hhash, pInBuffer, Size, pOutBuffer, Timeout, HASH_ALGOSELECTION_SHA224); in HAL_HASHEx_SHA224_Start()
184 HAL_StatusTypeDef HAL_HASHEx_SHA224_Accumulate(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint3… in HAL_HASHEx_SHA224_Accumulate() argument
186 return HASH_Accumulate(hhash, pInBuffer, Size,HASH_ALGOSELECTION_SHA224); in HAL_HASHEx_SHA224_Accumulate()
200 HAL_StatusTypeDef HAL_HASHEx_SHA256_Start(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t S… in HAL_HASHEx_SHA256_Start() argument
202 return HASH_Start(hhash, pInBuffer, Size, pOutBuffer, Timeout, HASH_ALGOSELECTION_SHA256); in HAL_HASHEx_SHA256_Start()
225 HAL_StatusTypeDef HAL_HASHEx_SHA256_Accumulate(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint3… in HAL_HASHEx_SHA256_Accumulate() argument
227 return HASH_Accumulate(hhash, pInBuffer, Size,HASH_ALGOSELECTION_SHA256); in HAL_HASHEx_SHA256_Accumulate()
264 HAL_StatusTypeDef HAL_HASHEx_SHA224_Start_IT(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_… in HAL_HASHEx_SHA224_Start_IT() argument
266 return HASH_Start_IT(hhash, pInBuffer, Size, pOutBuffer,HASH_ALGOSELECTION_SHA224); in HAL_HASHEx_SHA224_Start_IT()
[all …]
/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_hash.h168 …void (* InCpltCallback)( struct __HASH_HandleTypeDef * hhash); /*!< HASH input completion ca…
170 …void (* DgstCpltCallback)( struct __HASH_HandleTypeDef * hhash); /*!< HASH digest computation …
172 void (* ErrorCallback)( struct __HASH_HandleTypeDef * hhash); /*!< HASH error callback */
174 …void (* MspInitCallback)( struct __HASH_HandleTypeDef * hhash); /*!< HASH Msp Init callback */
176 …void (* MspDeInitCallback)( struct __HASH_HandleTypeDef * hhash); /*!< HASH Msp DeInit callback…
185 typedef void (*pHASH_CallbackTypeDef)(HASH_HandleTypeDef * hhash); /*!< pointer to a HASH common c…
481 HAL_StatusTypeDef HAL_HASH_Init(HASH_HandleTypeDef *hhash);
482 HAL_StatusTypeDef HAL_HASH_DeInit(HASH_HandleTypeDef *hhash);
483 void HAL_HASH_MspInit(HASH_HandleTypeDef *hhash);
484 void HAL_HASH_MspDeInit(HASH_HandleTypeDef *hhash);
[all …]
Dstm32l4xx_hal_hash_ex.h70 HAL_StatusTypeDef HAL_HASHEx_SHA224_Start(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t S…
71 HAL_StatusTypeDef HAL_HASHEx_SHA224_Accumulate(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint3…
72 HAL_StatusTypeDef HAL_HASHEx_SHA256_Start(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t S…
73 HAL_StatusTypeDef HAL_HASHEx_SHA256_Accumulate(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint3…
83 HAL_StatusTypeDef HAL_HASHEx_SHA224_Start_IT(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_…
84 HAL_StatusTypeDef HAL_HASHEx_SHA256_Start_IT(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_…
93 HAL_StatusTypeDef HAL_HASHEx_SHA224_Start_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32…
94 HAL_StatusTypeDef HAL_HASHEx_SHA224_Finish(HASH_HandleTypeDef *hhash, uint8_t* pOutBuffer, uint32_t…
95 HAL_StatusTypeDef HAL_HASHEx_SHA256_Start_DMA(HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32…
96 HAL_StatusTypeDef HAL_HASHEx_SHA256_Finish(HASH_HandleTypeDef *hhash, uint8_t* pOutBuffer, uint32_t…
[all …]