Merge maintenance-8.x.x fixes into master
[inav.git] / lib / main / STM32H7 / Drivers / STM32H7xx_HAL_Driver / Inc / stm32h7xx_hal_hash.h
blob54df4670a2f70f93089490878c2815ce6cd3d3bc
1 /**
2 ******************************************************************************
3 * @file stm32h7xx_hal_hash.h
4 * @author MCD Application Team
5 * @brief Header file of HASH HAL module.
6 ******************************************************************************
7 * @attention
9 * Copyright (c) 2017 STMicroelectronics.
10 * All rights reserved.
12 * This software is licensed under terms that can be found in the LICENSE file
13 * in the root directory of this software component.
14 * If no LICENSE file comes with this software, it is provided AS-IS.
16 ******************************************************************************
19 /* Define to prevent recursive inclusion -------------------------------------*/
20 #ifndef STM32H7xx_HAL_HASH_H
21 #define STM32H7xx_HAL_HASH_H
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
27 /* Includes ------------------------------------------------------------------*/
28 #include "stm32h7xx_hal_def.h"
30 /** @addtogroup STM32H7xx_HAL_Driver
31 * @{
33 #if defined (HASH)
34 /** @addtogroup HASH
35 * @{
38 /* Exported types ------------------------------------------------------------*/
39 /** @defgroup HASH_Exported_Types HASH Exported Types
40 * @{
43 /**
44 * @brief HASH Configuration Structure definition
46 typedef struct
48 uint32_t DataType; /*!< 32-bit data, 16-bit data, 8-bit data or 1-bit data.
49 This parameter can be a value of @ref HASH_Data_Type. */
51 uint32_t KeySize; /*!< The key size is used only in HMAC operation. */
53 uint8_t *pKey; /*!< The key is used only in HMAC operation. */
55 } HASH_InitTypeDef;
57 /**
58 * @brief HAL State structures definition
60 typedef enum
62 HAL_HASH_STATE_RESET = 0x00U, /*!< Peripheral is not initialized */
63 HAL_HASH_STATE_READY = 0x01U, /*!< Peripheral Initialized and ready for use */
64 HAL_HASH_STATE_BUSY = 0x02U, /*!< Processing (hashing) is ongoing */
65 HAL_HASH_STATE_TIMEOUT = 0x06U, /*!< Timeout state */
66 HAL_HASH_STATE_ERROR = 0x07U, /*!< Error state */
67 HAL_HASH_STATE_SUSPENDED = 0x08U /*!< Suspended state */
68 } HAL_HASH_StateTypeDef;
70 /**
71 * @brief HAL phase structures definition
73 typedef enum
75 HAL_HASH_PHASE_READY = 0x01U, /*!< HASH peripheral is ready to start */
76 HAL_HASH_PHASE_PROCESS = 0x02U, /*!< HASH peripheral is in HASH processing phase */
77 HAL_HASH_PHASE_HMAC_STEP_1 = 0x03U, /*!< HASH peripheral is in HMAC step 1 processing phase
78 (step 1 consists in entering the inner hash function key) */
79 HAL_HASH_PHASE_HMAC_STEP_2 = 0x04U, /*!< HASH peripheral is in HMAC step 2 processing phase
80 (step 2 consists in entering the message text) */
81 HAL_HASH_PHASE_HMAC_STEP_3 = 0x05U /*!< HASH peripheral is in HMAC step 3 processing phase
82 (step 3 consists in entering the outer hash function key) */
83 } HAL_HASH_PhaseTypeDef;
85 /**
86 * @brief HAL HASH mode suspend definitions
88 typedef enum
90 HAL_HASH_SUSPEND_NONE = 0x00U, /*!< HASH peripheral suspension not requested */
91 HAL_HASH_SUSPEND = 0x01U /*!< HASH peripheral suspension is requested */
92 } HAL_HASH_SuspendTypeDef;
94 #if (USE_HAL_HASH_REGISTER_CALLBACKS == 1U)
95 /**
96 * @brief HAL HASH common Callback ID enumeration definition
98 typedef enum
100 HAL_HASH_MSPINIT_CB_ID = 0x00U, /*!< HASH MspInit callback ID */
101 HAL_HASH_MSPDEINIT_CB_ID = 0x01U, /*!< HASH MspDeInit callback ID */
102 HAL_HASH_INPUTCPLT_CB_ID = 0x02U, /*!< HASH input completion callback ID */
103 HAL_HASH_DGSTCPLT_CB_ID = 0x03U, /*!< HASH digest computation completion callback ID */
104 HAL_HASH_ERROR_CB_ID = 0x04U, /*!< HASH error callback ID */
105 } HAL_HASH_CallbackIDTypeDef;
106 #endif /* USE_HAL_HASH_REGISTER_CALLBACKS */
110 * @brief HASH Handle Structure definition
112 #if (USE_HAL_HASH_REGISTER_CALLBACKS == 1)
113 typedef struct __HASH_HandleTypeDef
114 #else
115 typedef struct
116 #endif /* (USE_HAL_HASH_REGISTER_CALLBACKS) */
118 HASH_InitTypeDef Init; /*!< HASH required parameters */
120 uint8_t const *pHashInBuffPtr; /*!< Pointer to input buffer */
122 uint8_t *pHashOutBuffPtr; /*!< Pointer to output buffer (digest) */
124 uint8_t *pHashKeyBuffPtr; /*!< Pointer to key buffer (HMAC only) */
126 uint8_t const *pHashMsgBuffPtr; /*!< Pointer to message buffer (HMAC only) */
128 uint32_t HashBuffSize; /*!< Size of buffer to be processed */
130 __IO uint32_t HashInCount; /*!< Counter of inputted data */
132 __IO uint32_t HashITCounter; /*!< Counter of issued interrupts */
134 __IO uint32_t HashKeyCount; /*!< Counter for Key inputted data (HMAC only) */
136 HAL_StatusTypeDef Status; /*!< HASH peripheral status */
138 HAL_HASH_PhaseTypeDef Phase; /*!< HASH peripheral phase */
140 DMA_HandleTypeDef *hdmain; /*!< HASH In DMA Handle parameters */
142 HAL_LockTypeDef Lock; /*!< Locking object */
144 __IO HAL_HASH_StateTypeDef State; /*!< HASH peripheral state */
146 HAL_HASH_SuspendTypeDef SuspendRequest; /*!< HASH peripheral suspension request flag */
148 FlagStatus DigestCalculationDisable; /*!< Digest calculation phase skip (MDMAT bit control) for multi-buffers DMA-based HMAC computation */
150 __IO uint32_t NbWordsAlreadyPushed; /*!< Numbers of words already pushed in FIFO before inputting new block */
152 __IO uint32_t ErrorCode; /*!< HASH Error code */
154 __IO uint32_t Accumulation; /*!< HASH multi buffers accumulation flag */
156 #if (USE_HAL_HASH_REGISTER_CALLBACKS == 1)
157 void (* InCpltCallback)(struct __HASH_HandleTypeDef *hhash); /*!< HASH input completion callback */
159 void (* DgstCpltCallback)(struct __HASH_HandleTypeDef *hhash); /*!< HASH digest computation completion callback */
161 void (* ErrorCallback)(struct __HASH_HandleTypeDef *hhash); /*!< HASH error callback */
163 void (* MspInitCallback)(struct __HASH_HandleTypeDef *hhash); /*!< HASH Msp Init callback */
165 void (* MspDeInitCallback)(struct __HASH_HandleTypeDef *hhash); /*!< HASH Msp DeInit callback */
167 #endif /* (USE_HAL_HASH_REGISTER_CALLBACKS) */
168 } HASH_HandleTypeDef;
170 #if (USE_HAL_HASH_REGISTER_CALLBACKS == 1U)
172 * @brief HAL HASH Callback pointer definition
174 typedef void (*pHASH_CallbackTypeDef)(HASH_HandleTypeDef *hhash); /*!< pointer to a HASH common callback functions */
175 #endif /* USE_HAL_HASH_REGISTER_CALLBACKS */
178 * @}
181 /* Exported constants --------------------------------------------------------*/
183 /** @defgroup HASH_Exported_Constants HASH Exported Constants
184 * @{
187 /** @defgroup HASH_Algo_Selection HASH algorithm selection
188 * @{
190 #define HASH_ALGOSELECTION_SHA1 0x00000000U /*!< HASH function is SHA1 */
191 #define HASH_ALGOSELECTION_MD5 HASH_CR_ALGO_0 /*!< HASH function is MD5 */
192 #define HASH_ALGOSELECTION_SHA224 HASH_CR_ALGO_1 /*!< HASH function is SHA224 */
193 #define HASH_ALGOSELECTION_SHA256 HASH_CR_ALGO /*!< HASH function is SHA256 */
195 * @}
198 /** @defgroup HASH_Algorithm_Mode HASH algorithm mode
199 * @{
201 #define HASH_ALGOMODE_HASH 0x00000000U /*!< Algorithm is HASH */
202 #define HASH_ALGOMODE_HMAC HASH_CR_MODE /*!< Algorithm is HMAC */
204 * @}
207 /** @defgroup HASH_Data_Type HASH input data type
208 * @{
210 #define HASH_DATATYPE_32B 0x00000000U /*!< 32-bit data. No swapping */
211 #define HASH_DATATYPE_16B HASH_CR_DATATYPE_0 /*!< 16-bit data. Each half word is swapped */
212 #define HASH_DATATYPE_8B HASH_CR_DATATYPE_1 /*!< 8-bit data. All bytes are swapped */
213 #define HASH_DATATYPE_1B HASH_CR_DATATYPE /*!< 1-bit data. In the word all bits are swapped */
215 * @}
218 /** @defgroup HASH_HMAC_Long_key_only_for_HMAC_mode HMAC key length type
219 * @{
221 #define HASH_HMAC_KEYTYPE_SHORTKEY 0x00000000U /*!< HMAC Key size is <= 64 bytes */
222 #define HASH_HMAC_KEYTYPE_LONGKEY HASH_CR_LKEY /*!< HMAC Key size is > 64 bytes */
224 * @}
227 /** @defgroup HASH_flags_definition HASH flags definitions
228 * @{
230 #define HASH_FLAG_DINIS HASH_SR_DINIS /*!< 16 locations are free in the DIN : a new block can be entered in the Peripheral */
231 #define HASH_FLAG_DCIS HASH_SR_DCIS /*!< Digest calculation complete */
232 #define HASH_FLAG_DMAS HASH_SR_DMAS /*!< DMA interface is enabled (DMAE=1) or a transfer is ongoing */
233 #define HASH_FLAG_BUSY HASH_SR_BUSY /*!< The hash core is Busy, processing a block of data */
234 #define HASH_FLAG_DINNE HASH_CR_DINNE /*!< DIN not empty : the input buffer contains at least one word of data */
237 * @}
240 /** @defgroup HASH_interrupts_definition HASH interrupts definitions
241 * @{
243 #define HASH_IT_DINI HASH_IMR_DINIE /*!< A new block can be entered into the input buffer (DIN) */
244 #define HASH_IT_DCI HASH_IMR_DCIE /*!< Digest calculation complete */
247 * @}
250 /** @defgroup HASH_Error_Definition HASH Error Definition
251 * @{
253 #define HAL_HASH_ERROR_NONE 0x00000000U /*!< No error */
254 #define HAL_HASH_ERROR_IT 0x00000001U /*!< IT-based process error */
255 #define HAL_HASH_ERROR_DMA 0x00000002U /*!< DMA-based process error */
256 #if (USE_HAL_HASH_REGISTER_CALLBACKS == 1U)
257 #define HAL_HASH_ERROR_INVALID_CALLBACK 0x00000004U /*!< Invalid Callback error */
258 #endif /* USE_HAL_HASH_REGISTER_CALLBACKS */
260 * @}
264 * @}
267 /* Exported macros -----------------------------------------------------------*/
268 /** @defgroup HASH_Exported_Macros HASH Exported Macros
269 * @{
272 /** @brief Check whether or not the specified HASH flag is set.
273 * @param __FLAG__ specifies the flag to check.
274 * This parameter can be one of the following values:
275 * @arg @ref HASH_FLAG_DINIS A new block can be entered into the input buffer.
276 * @arg @ref HASH_FLAG_DCIS Digest calculation complete.
277 * @arg @ref HASH_FLAG_DMAS DMA interface is enabled (DMAE=1) or a transfer is ongoing.
278 * @arg @ref HASH_FLAG_BUSY The hash core is Busy : processing a block of data.
279 * @arg @ref HASH_FLAG_DINNE DIN not empty : the input buffer contains at least one word of data.
280 * @retval The new state of __FLAG__ (TRUE or FALSE).
282 #define __HAL_HASH_GET_FLAG(__FLAG__) (((__FLAG__) > 8U) ? \
283 ((HASH->CR & (__FLAG__)) == (__FLAG__)) :\
284 ((HASH->SR & (__FLAG__)) == (__FLAG__)) )
287 /** @brief Clear the specified HASH flag.
288 * @param __FLAG__ specifies the flag to clear.
289 * This parameter can be one of the following values:
290 * @arg @ref HASH_FLAG_DINIS A new block can be entered into the input buffer.
291 * @arg @ref HASH_FLAG_DCIS Digest calculation complete
292 * @retval None
294 #define __HAL_HASH_CLEAR_FLAG(__FLAG__) CLEAR_BIT(HASH->SR, (__FLAG__))
297 /** @brief Enable the specified HASH interrupt.
298 * @param __INTERRUPT__ specifies the HASH interrupt source to enable.
299 * This parameter can be one of the following values:
300 * @arg @ref HASH_IT_DINI A new block can be entered into the input buffer (DIN)
301 * @arg @ref HASH_IT_DCI Digest calculation complete
302 * @retval None
304 #define __HAL_HASH_ENABLE_IT(__INTERRUPT__) SET_BIT(HASH->IMR, (__INTERRUPT__))
306 /** @brief Disable the specified HASH interrupt.
307 * @param __INTERRUPT__ specifies the HASH interrupt source to disable.
308 * This parameter can be one of the following values:
309 * @arg @ref HASH_IT_DINI A new block can be entered into the input buffer (DIN)
310 * @arg @ref HASH_IT_DCI Digest calculation complete
311 * @retval None
313 #define __HAL_HASH_DISABLE_IT(__INTERRUPT__) CLEAR_BIT(HASH->IMR, (__INTERRUPT__))
315 /** @brief Reset HASH handle state.
316 * @param __HANDLE__ HASH handle.
317 * @retval None
320 #if (USE_HAL_HASH_REGISTER_CALLBACKS == 1)
321 #define __HAL_HASH_RESET_HANDLE_STATE(__HANDLE__) do{\
322 (__HANDLE__)->State = HAL_HASH_STATE_RESET;\
323 (__HANDLE__)->MspInitCallback = NULL; \
324 (__HANDLE__)->MspDeInitCallback = NULL; \
325 }while(0)
326 #else
327 #define __HAL_HASH_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_HASH_STATE_RESET)
328 #endif /* USE_HAL_HASH_REGISTER_CALLBACKS */
331 /** @brief Reset HASH handle status.
332 * @param __HANDLE__ HASH handle.
333 * @retval None
335 #define __HAL_HASH_RESET_HANDLE_STATUS(__HANDLE__) ((__HANDLE__)->Status = HAL_OK)
338 * @brief Enable the multi-buffer DMA transfer mode.
339 * @note This bit is set when hashing large files when multiple DMA transfers are needed.
340 * @retval None
342 #define __HAL_HASH_SET_MDMAT() SET_BIT(HASH->CR, HASH_CR_MDMAT)
345 * @brief Disable the multi-buffer DMA transfer mode.
346 * @retval None
348 #define __HAL_HASH_RESET_MDMAT() CLEAR_BIT(HASH->CR, HASH_CR_MDMAT)
352 * @brief Start the digest computation.
353 * @retval None
355 #define __HAL_HASH_START_DIGEST() SET_BIT(HASH->STR, HASH_STR_DCAL)
358 * @brief Set the number of valid bits in the last word written in data register DIN.
359 * @param __SIZE__ size in bytes of last data written in Data register.
360 * @retval None
362 #define __HAL_HASH_SET_NBVALIDBITS(__SIZE__) MODIFY_REG(HASH->STR, HASH_STR_NBLW, 8U * ((__SIZE__) % 4U))
365 * @brief Reset the HASH core.
366 * @retval None
368 #define __HAL_HASH_INIT() SET_BIT(HASH->CR, HASH_CR_INIT)
371 * @}
375 /* Private macros --------------------------------------------------------*/
376 /** @defgroup HASH_Private_Macros HASH Private Macros
377 * @{
380 * @brief Return digest length in bytes.
381 * @retval Digest length
383 #define HASH_DIGEST_LENGTH() ((READ_BIT(HASH->CR, HASH_CR_ALGO) == HASH_ALGOSELECTION_SHA1) ? 20U : \
384 ((READ_BIT(HASH->CR, HASH_CR_ALGO) == HASH_ALGOSELECTION_SHA224) ? 28U : \
385 ((READ_BIT(HASH->CR, HASH_CR_ALGO) == HASH_ALGOSELECTION_SHA256) ? 32U : 16U ) ) )
387 * @brief Return number of words already pushed in the FIFO.
388 * @retval Number of words already pushed in the FIFO
390 #define HASH_NBW_PUSHED() ((READ_BIT(HASH->CR, HASH_CR_NBW)) >> 8U)
393 * @brief Ensure that HASH input data type is valid.
394 * @param __DATATYPE__ HASH input data type.
395 * @retval SET (__DATATYPE__ is valid) or RESET (__DATATYPE__ is invalid)
397 #define IS_HASH_DATATYPE(__DATATYPE__) (((__DATATYPE__) == HASH_DATATYPE_32B)|| \
398 ((__DATATYPE__) == HASH_DATATYPE_16B)|| \
399 ((__DATATYPE__) == HASH_DATATYPE_8B) || \
400 ((__DATATYPE__) == HASH_DATATYPE_1B))
403 * @brief Ensure that input data buffer size is valid for multi-buffer HASH
404 * processing in DMA mode.
405 * @note This check is valid only for multi-buffer HASH processing in DMA mode.
406 * @param __SIZE__ input data buffer size.
407 * @retval SET (__SIZE__ is valid) or RESET (__SIZE__ is invalid)
409 #define IS_HASH_DMA_MULTIBUFFER_SIZE(__SIZE__) ((READ_BIT(HASH->CR, HASH_CR_MDMAT) == 0U) || (((__SIZE__) % 4U) == 0U))
412 * @brief Ensure that input data buffer size is valid for multi-buffer HMAC
413 * processing in DMA mode.
414 * @note This check is valid only for multi-buffer HMAC processing in DMA mode.
415 * @param __HANDLE__ HASH handle.
416 * @param __SIZE__ input data buffer size.
417 * @retval SET (__SIZE__ is valid) or RESET (__SIZE__ is invalid)
419 #define IS_HMAC_DMA_MULTIBUFFER_SIZE(__HANDLE__,__SIZE__) ((((__HANDLE__)->DigestCalculationDisable) == RESET)\
420 || (((__SIZE__) % 4U) == 0U))
422 * @brief Ensure that handle phase is set to HASH processing.
423 * @param __HANDLE__ HASH handle.
424 * @retval SET (handle phase is set to HASH processing) or RESET (handle phase is not set to HASH processing)
426 #define IS_HASH_PROCESSING(__HANDLE__) ((__HANDLE__)->Phase == HAL_HASH_PHASE_PROCESS)
429 * @brief Ensure that handle phase is set to HMAC processing.
430 * @param __HANDLE__ HASH handle.
431 * @retval SET (handle phase is set to HMAC processing) or RESET (handle phase is not set to HMAC processing)
433 #define IS_HMAC_PROCESSING(__HANDLE__) (((__HANDLE__)->Phase == HAL_HASH_PHASE_HMAC_STEP_1) || \
434 ((__HANDLE__)->Phase == HAL_HASH_PHASE_HMAC_STEP_2) || \
435 ((__HANDLE__)->Phase == HAL_HASH_PHASE_HMAC_STEP_3))
438 * @}
441 /* Include HASH HAL Extended module */
442 #include "stm32h7xx_hal_hash_ex.h"
443 /* Exported functions --------------------------------------------------------*/
445 /** @addtogroup HASH_Exported_Functions HASH Exported Functions
446 * @{
449 /** @addtogroup HASH_Exported_Functions_Group1 Initialization and de-initialization functions
450 * @{
453 /* Initialization/de-initialization methods **********************************/
454 HAL_StatusTypeDef HAL_HASH_Init(HASH_HandleTypeDef *hhash);
455 HAL_StatusTypeDef HAL_HASH_DeInit(HASH_HandleTypeDef *hhash);
456 void HAL_HASH_MspInit(HASH_HandleTypeDef *hhash);
457 void HAL_HASH_MspDeInit(HASH_HandleTypeDef *hhash);
458 void HAL_HASH_InCpltCallback(HASH_HandleTypeDef *hhash);
459 void HAL_HASH_DgstCpltCallback(HASH_HandleTypeDef *hhash);
460 void HAL_HASH_ErrorCallback(HASH_HandleTypeDef *hhash);
461 /* Callbacks Register/UnRegister functions ***********************************/
462 #if (USE_HAL_HASH_REGISTER_CALLBACKS == 1)
463 HAL_StatusTypeDef HAL_HASH_RegisterCallback(HASH_HandleTypeDef *hhash, HAL_HASH_CallbackIDTypeDef CallbackID,
464 pHASH_CallbackTypeDef pCallback);
465 HAL_StatusTypeDef HAL_HASH_UnRegisterCallback(HASH_HandleTypeDef *hhash, HAL_HASH_CallbackIDTypeDef CallbackID);
466 #endif /* USE_HAL_HASH_REGISTER_CALLBACKS */
470 * @}
473 /** @addtogroup HASH_Exported_Functions_Group2 HASH processing functions in polling mode
474 * @{
478 /* HASH processing using polling *********************************************/
479 HAL_StatusTypeDef HAL_HASH_SHA1_Start(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
480 uint8_t *pOutBuffer,
481 uint32_t Timeout);
482 HAL_StatusTypeDef HAL_HASH_MD5_Start(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
483 uint8_t *pOutBuffer,
484 uint32_t Timeout);
485 HAL_StatusTypeDef HAL_HASH_MD5_Accmlt(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size);
486 HAL_StatusTypeDef HAL_HASH_SHA1_Accmlt(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size);
487 HAL_StatusTypeDef HAL_HASH_MD5_Accmlt_End(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
488 uint8_t *pOutBuffer, uint32_t Timeout);
489 HAL_StatusTypeDef HAL_HASH_SHA1_Accmlt_End(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
490 uint8_t *pOutBuffer, uint32_t Timeout);
494 * @}
497 /** @addtogroup HASH_Exported_Functions_Group3 HASH processing functions in interrupt mode
498 * @{
501 /* HASH processing using IT **************************************************/
502 HAL_StatusTypeDef HAL_HASH_SHA1_Start_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
503 uint8_t *pOutBuffer);
504 HAL_StatusTypeDef HAL_HASH_SHA1_Accmlt_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size);
505 HAL_StatusTypeDef HAL_HASH_SHA1_Accmlt_End_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
506 uint8_t *pOutBuffer);
507 HAL_StatusTypeDef HAL_HASH_MD5_Start_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
508 uint8_t *pOutBuffer);
509 HAL_StatusTypeDef HAL_HASH_MD5_Accmlt_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size);
510 HAL_StatusTypeDef HAL_HASH_MD5_Accmlt_End_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
511 uint8_t *pOutBuffer);
512 void HAL_HASH_IRQHandler(HASH_HandleTypeDef *hhash);
514 * @}
517 /** @addtogroup HASH_Exported_Functions_Group4 HASH processing functions in DMA mode
518 * @{
521 /* HASH processing using DMA *************************************************/
522 HAL_StatusTypeDef HAL_HASH_SHA1_Start_DMA(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size);
523 HAL_StatusTypeDef HAL_HASH_SHA1_Finish(HASH_HandleTypeDef *hhash, uint8_t *pOutBuffer, uint32_t Timeout);
524 HAL_StatusTypeDef HAL_HASH_MD5_Start_DMA(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size);
525 HAL_StatusTypeDef HAL_HASH_MD5_Finish(HASH_HandleTypeDef *hhash, uint8_t *pOutBuffer, uint32_t Timeout);
528 * @}
531 /** @addtogroup HASH_Exported_Functions_Group5 HMAC processing functions in polling mode
532 * @{
535 /* HASH-MAC processing using polling *****************************************/
536 HAL_StatusTypeDef HAL_HMAC_SHA1_Start(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
537 uint8_t *pOutBuffer,
538 uint32_t Timeout);
539 HAL_StatusTypeDef HAL_HMAC_MD5_Start(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
540 uint8_t *pOutBuffer,
541 uint32_t Timeout);
544 * @}
547 /** @addtogroup HASH_Exported_Functions_Group6 HMAC processing functions in interrupt mode
548 * @{
551 HAL_StatusTypeDef HAL_HMAC_MD5_Start_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
552 uint8_t *pOutBuffer);
553 HAL_StatusTypeDef HAL_HMAC_SHA1_Start_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
554 uint8_t *pOutBuffer);
557 * @}
560 /** @addtogroup HASH_Exported_Functions_Group7 HMAC processing functions in DMA mode
561 * @{
564 /* HASH-HMAC processing using DMA ********************************************/
565 HAL_StatusTypeDef HAL_HMAC_SHA1_Start_DMA(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size);
566 HAL_StatusTypeDef HAL_HMAC_MD5_Start_DMA(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size);
569 * @}
572 /** @addtogroup HASH_Exported_Functions_Group8 Peripheral states functions
573 * @{
577 /* Peripheral State methods **************************************************/
578 HAL_HASH_StateTypeDef HAL_HASH_GetState(const HASH_HandleTypeDef *hhash);
579 HAL_StatusTypeDef HAL_HASH_GetStatus(const HASH_HandleTypeDef *hhash);
580 void HAL_HASH_ContextSaving(const HASH_HandleTypeDef *hhash, const uint8_t *pMemBuffer);
581 void HAL_HASH_ContextRestoring(HASH_HandleTypeDef *hhash, const uint8_t *pMemBuffer);
582 void HAL_HASH_SwFeed_ProcessSuspend(HASH_HandleTypeDef *hhash);
583 HAL_StatusTypeDef HAL_HASH_DMAFeed_ProcessSuspend(HASH_HandleTypeDef *hhash);
584 uint32_t HAL_HASH_GetError(const HASH_HandleTypeDef *hhash);
587 * @}
591 * @}
594 /* Private functions -----------------------------------------------------------*/
596 /** @addtogroup HASH_Private_Functions HASH Private Functions
597 * @{
600 /* Private functions */
601 HAL_StatusTypeDef HASH_Start(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
602 uint8_t *pOutBuffer,
603 uint32_t Timeout, uint32_t Algorithm);
604 HAL_StatusTypeDef HASH_Accumulate(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
605 uint32_t Algorithm);
606 HAL_StatusTypeDef HASH_Accumulate_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
607 uint32_t Algorithm);
608 HAL_StatusTypeDef HASH_Start_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
609 uint8_t *pOutBuffer,
610 uint32_t Algorithm);
611 HAL_StatusTypeDef HASH_Start_DMA(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
612 uint32_t Algorithm);
613 HAL_StatusTypeDef HASH_Finish(HASH_HandleTypeDef *hhash, uint8_t *pOutBuffer, uint32_t Timeout);
614 HAL_StatusTypeDef HMAC_Start(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
615 uint8_t *pOutBuffer,
616 uint32_t Timeout, uint32_t Algorithm);
617 HAL_StatusTypeDef HMAC_Start_IT(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
618 uint8_t *pOutBuffer,
619 uint32_t Algorithm);
620 HAL_StatusTypeDef HMAC_Start_DMA(HASH_HandleTypeDef *hhash, const uint8_t *const pInBuffer, uint32_t Size,
621 uint32_t Algorithm);
624 * @}
628 * @}
630 #endif /* HASH*/
632 * @}
636 #ifdef __cplusplus
638 #endif
641 #endif /* STM32H7xx_HAL_HASH_H */