/** ****************************************************************************** * @file stm32l1xx_hal_cryp_ex.c * @author MCD Application Team * @brief CRYPEx HAL module driver. * * This file provides firmware functions to manage the following * functionalities of the Cryptography (CRYP) extension peripheral: * + Computation completed callback. * ****************************************************************************** * @attention * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ #include "stm32l1xx_hal.h" #ifdef HAL_CRYP_MODULE_ENABLED /** @addtogroup STM32L1xx_HAL_Driver * @{ */ /** @defgroup CRYPEx CRYPEx * @brief CRYP HAL Extended module driver. * @{ */ #if defined(STM32L162xC) || defined(STM32L162xCA) || defined(STM32L162xD) || defined(STM32L162xE) || defined(STM32L162xDX) /* Private typedef -----------------------------------------------------------*/ /* Private define ------------------------------------------------------------*/ /* Private macro -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private function prototypes -----------------------------------------------*/ /* Private functions ---------------------------------------------------------*/ /** @defgroup CRYPEx_Exported_Functions CRYPEx Exported Functions * @{ */ /** @defgroup CRYPEx_Exported_Functions_Group1 Extended features functions * @brief Extended features functions. * @verbatim =============================================================================== ##### Extended features functions ##### =============================================================================== [..] This section provides callback functions: (+) Computation completed. @endverbatim * @{ */ /** * @brief Computation completed callbacks. * @param hcryp pointer to a CRYP_HandleTypeDef structure that contains * the configuration information for CRYP module * @retval None */ __weak void HAL_CRYPEx_ComputationCpltCallback(CRYP_HandleTypeDef *hcryp) { /* Prevent unused argument(s) compilation warning */ UNUSED(hcryp); /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CRYPEx_ComputationCpltCallback could be implemented in the user file */ } /** * @} */ /** * @} */ #endif /* STM32L162xC || STM32L162xCA || STM32L162xD || STM32L162xE || STM32L162xDX*/ /** * @} */ /** * @} */ #endif /* HAL_CRYP_MODULE_ENABLED */