]> git.gir.st - tmk_keyboard.git/blob - tmk_core/tool/mbed/mbed-sdk/libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32L0/stm32l0xx_hal_cryp_ex.c
Merge commit '1fe4406f374291ab2e86e95a97341fd9c475fcb8'
[tmk_keyboard.git] / tmk_core / tool / mbed / mbed-sdk / libraries / mbed / targets / cmsis / TARGET_STM / TARGET_STM32L0 / stm32l0xx_hal_cryp_ex.c
1 /**
2 ******************************************************************************
3 * @file stm32l0xx_hal_cryp_ex.c
4 * @author MCD Application Team
5 * @version V1.2.0
6 * @date 06-February-2015
7 * @brief CRYPEx HAL module driver.
8 *
9 * This file provides firmware functions to manage the following
10 * functionalities of the Cryptography (CRYP) extension peripheral:
11 * + Computation completed callback.
12 *
13 ******************************************************************************
14 * @attention
15 *
16 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
17 *
18 * Redistribution and use in source and binary forms, with or without modification,
19 * are permitted provided that the following conditions are met:
20 * 1. Redistributions of source code must retain the above copyright notice,
21 * this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright notice,
23 * this list of conditions and the following disclaimer in the documentation
24 * and/or other materials provided with the distribution.
25 * 3. Neither the name of STMicroelectronics nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
30 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
32 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
35 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
36 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
37 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 ******************************************************************************
41 */
42
43 #if defined (STM32L041xx) || defined (STM32L061xx) || defined (STM32L062xx) || defined (STM32L063xx) || (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx)
44 /* Includes ------------------------------------------------------------------*/
45 #include "stm32l0xx_hal.h"
46
47 #ifdef HAL_CRYP_MODULE_ENABLED
48 /** @addtogroup STM32L0xx_HAL_Driver
49 * @{
50 */
51
52 /** @defgroup CRYPEx CRYPEx
53 * @brief CRYP HAL Extended module driver.
54 * @{
55 */
56
57
58 /* Private typedef -----------------------------------------------------------*/
59 /* Private define ------------------------------------------------------------*/
60 /* Private macro -------------------------------------------------------------*/
61 /* Private variables ---------------------------------------------------------*/
62 /* Private function prototypes -----------------------------------------------*/
63 /* Private functions ---------------------------------------------------------*/
64
65 /** @defgroup CRYPEx_Exported_Functions CRYPEx Exported Functions
66 * @{
67 */
68
69
70 /** @defgroup CRYPEx_Exported_Functions_Group1 Extended features functions
71 * @brief Extended features functions.
72 *
73 @verbatim
74 ===============================================================================
75 ##### Extended features functions #####
76 ===============================================================================
77 [..] This section provides callback functions:
78 (+) Computation completed.
79
80 @endverbatim
81 * @{
82 */
83
84 /**
85 * @brief Computation completed callbacks.
86 * @param hcryp: pointer to a CRYP_HandleTypeDef structure that contains
87 * the configuration information for CRYP module
88 * @retval None
89 */
90 __weak void HAL_CRYPEx_ComputationCpltCallback(CRYP_HandleTypeDef *hcryp)
91 {
92 /* NOTE : This function Should not be modified, when the callback is needed,
93 the HAL_CRYP_ComputationCpltCallback could be implemented in the user file
94 */
95 }
96
97 /**
98 * @}
99 */
100
101
102 /**
103 * @}
104 */
105 /**
106 * @}
107 */
108
109 /**
110 * @}
111 */
112
113 #endif /* HAL_CRYP_MODULE_ENABLED */
114 #endif /* STM32L041xx || STM32L061xx || STM32L062xx || STM32L063xx || STM32L081xx || STM32L082xx || STM32L083xx */
115 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
116
Imprint / Impressum