STM32F4xx HAL Documentation
Hardware Abstraction Layer for STM32F4 familiy
|
HASH processing functions using interrupt mode. More...
Functions | |
HAL_StatusTypeDef | HAL_HASH_SHA1_Start_IT (HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size, uint8_t *pOutBuffer) |
Initialize the HASH peripheral in SHA1 mode, next process pInBuffer then read the computed digest in interruption mode. | |
HAL_StatusTypeDef | HAL_HASH_SHA1_Accmlt_IT (HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) |
If not already done, initialize the HASH peripheral in SHA1 mode then processes pInBuffer in interruption mode. | |
HAL_StatusTypeDef | HAL_HASH_SHA1_Accmlt_End_IT (HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size, uint8_t *pOutBuffer) |
End computation of a single HASH signature after several calls to HAL_HASH_SHA1_Accmlt_IT() API. | |
HAL_StatusTypeDef | HAL_HASH_MD5_Start_IT (HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size, uint8_t *pOutBuffer) |
Initialize the HASH peripheral in MD5 mode, next process pInBuffer then read the computed digest in interruption mode. | |
HAL_StatusTypeDef | HAL_HASH_MD5_Accmlt_IT (HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size) |
If not already done, initialize the HASH peripheral in MD5 mode then processes pInBuffer in interruption mode. | |
HAL_StatusTypeDef | HAL_HASH_MD5_Accmlt_End_IT (HASH_HandleTypeDef *hhash, uint8_t *pInBuffer, uint32_t Size, uint8_t *pOutBuffer) |
End computation of a single HASH signature after several calls to HAL_HASH_MD5_Accmlt_IT() API. | |
void | HAL_HASH_IRQHandler (HASH_HandleTypeDef *hhash) |
Handle HASH interrupt request. | |
HASH processing functions using interrupt mode.
=============================================================================== ##### Interruption mode HASH processing functions ##### =============================================================================== [..] This section provides functions allowing to calculate in interrupt mode the hash value using one of the following algorithms: (+) MD5 (++) HAL_HASH_MD5_Start_IT() (++) HAL_HASH_MD5_Accmlt_IT() (++) HAL_HASH_MD5_Accmlt_End_IT() (+) SHA1 (++) HAL_HASH_SHA1_Start_IT() (++) HAL_HASH_SHA1_Accmlt_IT() (++) HAL_HASH_SHA1_Accmlt_End_IT() [..] API HAL_HASH_IRQHandler() manages each HASH interruption. [..] Note that HAL_HASH_IRQHandler() manages as well HASH Peripheral interruptions when in HMAC processing mode.
HAL_StatusTypeDef HAL_HASH_SHA1_Start_IT | ( | HASH_HandleTypeDef * | hhash, |
uint8_t * | pInBuffer, | ||
uint32_t | Size, | ||
uint8_t * | pOutBuffer ) |
#include <stm32f4xx_hal_hash.h>
Initialize the HASH peripheral in SHA1 mode, next process pInBuffer then read the computed digest in interruption mode.
hhash | HASH handle. |
pInBuffer | pointer to the input buffer (buffer to be hashed). |
Size | length of the input buffer in bytes. |
pOutBuffer | pointer to the computed digest. Digest size is 20 bytes. |
HAL | status |
Definition at line 970 of file stm32f4xx_hal_hash.c.
References HASH_ALGOSELECTION_SHA1, and HASH_Start_IT().
HAL_StatusTypeDef HAL_HASH_SHA1_Accmlt_IT | ( | HASH_HandleTypeDef * | hhash, |
uint8_t * | pInBuffer, | ||
uint32_t | Size ) |
#include <stm32f4xx_hal_hash.h>
If not already done, initialize the HASH peripheral in SHA1 mode then processes pInBuffer in interruption mode.
hhash | HASH handle. |
pInBuffer | pointer to the input buffer (buffer to be hashed). |
Size | length of the input buffer in bytes, must be a multiple of 4. |
HAL | status |
Definition at line 995 of file stm32f4xx_hal_hash.c.
References HASH_Accumulate_IT(), and HASH_ALGOSELECTION_SHA1.
HAL_StatusTypeDef HAL_HASH_SHA1_Accmlt_End_IT | ( | HASH_HandleTypeDef * | hhash, |
uint8_t * | pInBuffer, | ||
uint32_t | Size, | ||
uint8_t * | pOutBuffer ) |
#include <stm32f4xx_hal_hash.h>
End computation of a single HASH signature after several calls to HAL_HASH_SHA1_Accmlt_IT() API.
hhash | HASH handle. |
pInBuffer | pointer to the input buffer (buffer to be hashed). |
Size | length of the input buffer in bytes. |
pOutBuffer | pointer to the computed digest. Digest size is 20 bytes. |
HAL | status |
Definition at line 1009 of file stm32f4xx_hal_hash.c.
References HASH_ALGOSELECTION_SHA1, and HASH_Start_IT().
HAL_StatusTypeDef HAL_HASH_MD5_Start_IT | ( | HASH_HandleTypeDef * | hhash, |
uint8_t * | pInBuffer, | ||
uint32_t | Size, | ||
uint8_t * | pOutBuffer ) |
#include <stm32f4xx_hal_hash.h>
Initialize the HASH peripheral in MD5 mode, next process pInBuffer then read the computed digest in interruption mode.
hhash | HASH handle. |
pInBuffer | pointer to the input buffer (buffer to be hashed). |
Size | length of the input buffer in bytes. |
pOutBuffer | pointer to the computed digest. Digest size is 16 bytes. |
HAL | status |
Definition at line 916 of file stm32f4xx_hal_hash.c.
References HASH_ALGOSELECTION_MD5, and HASH_Start_IT().
HAL_StatusTypeDef HAL_HASH_MD5_Accmlt_IT | ( | HASH_HandleTypeDef * | hhash, |
uint8_t * | pInBuffer, | ||
uint32_t | Size ) |
#include <stm32f4xx_hal_hash.h>
If not already done, initialize the HASH peripheral in MD5 mode then processes pInBuffer in interruption mode.
hhash | HASH handle. |
pInBuffer | pointer to the input buffer (buffer to be hashed). |
Size | length of the input buffer in bytes, must be a multiple of 4. |
HAL | status |
Definition at line 940 of file stm32f4xx_hal_hash.c.
References HASH_Accumulate_IT(), and HASH_ALGOSELECTION_MD5.
HAL_StatusTypeDef HAL_HASH_MD5_Accmlt_End_IT | ( | HASH_HandleTypeDef * | hhash, |
uint8_t * | pInBuffer, | ||
uint32_t | Size, | ||
uint8_t * | pOutBuffer ) |
#include <stm32f4xx_hal_hash.h>
End computation of a single HASH signature after several calls to HAL_HASH_MD5_Accmlt_IT() API.
hhash | HASH handle. |
pInBuffer | pointer to the input buffer (buffer to be hashed). |
Size | length of the input buffer in bytes. |
pOutBuffer | pointer to the computed digest. Digest size is 16 bytes. |
HAL | status |
Definition at line 954 of file stm32f4xx_hal_hash.c.
References HASH_ALGOSELECTION_MD5, and HASH_Start_IT().
void HAL_HASH_IRQHandler | ( | HASH_HandleTypeDef * | hhash | ) |
#include <stm32f4xx_hal_hash.h>
Handle HASH interrupt request.
hhash | HASH handle. |
None |
Definition at line 1024 of file stm32f4xx_hal_hash.c.
References HASH_HandleTypeDef::ErrorCode, HAL_HASH_ERROR_IT, HAL_HASH_ErrorCallback(), HAL_OK, HASH_IT(), and HASH_HandleTypeDef::Status.