Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
112:6f327212ef96
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 112:6f327212ef96 1 /**
Kojto 112:6f327212ef96 2 ******************************************************************************
Kojto 112:6f327212ef96 3 * @file stm32l1xx_hal_cryp.h
Kojto 112:6f327212ef96 4 * @author MCD Application Team
Kojto 112:6f327212ef96 5 * @version V1.0.0
Kojto 112:6f327212ef96 6 * @date 5-September-2014
Kojto 112:6f327212ef96 7 * @brief Header file of CRYP HAL module.
Kojto 112:6f327212ef96 8 ******************************************************************************
Kojto 112:6f327212ef96 9 * @attention
Kojto 112:6f327212ef96 10 *
Kojto 112:6f327212ef96 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Kojto 112:6f327212ef96 12 *
Kojto 112:6f327212ef96 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 112:6f327212ef96 14 * are permitted provided that the following conditions are met:
Kojto 112:6f327212ef96 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 112:6f327212ef96 16 * this list of conditions and the following disclaimer.
Kojto 112:6f327212ef96 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 112:6f327212ef96 18 * this list of conditions and the following disclaimer in the documentation
Kojto 112:6f327212ef96 19 * and/or other materials provided with the distribution.
Kojto 112:6f327212ef96 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 112:6f327212ef96 21 * may be used to endorse or promote products derived from this software
Kojto 112:6f327212ef96 22 * without specific prior written permission.
Kojto 112:6f327212ef96 23 *
Kojto 112:6f327212ef96 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 112:6f327212ef96 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 112:6f327212ef96 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 112:6f327212ef96 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 112:6f327212ef96 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 112:6f327212ef96 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 112:6f327212ef96 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 112:6f327212ef96 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 112:6f327212ef96 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 112:6f327212ef96 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 112:6f327212ef96 34 *
Kojto 112:6f327212ef96 35 ******************************************************************************
Kojto 112:6f327212ef96 36 */
Kojto 112:6f327212ef96 37
Kojto 112:6f327212ef96 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 112:6f327212ef96 39 #ifndef __STM32L1xx_HAL_CRYP_H
Kojto 112:6f327212ef96 40 #define __STM32L1xx_HAL_CRYP_H
Kojto 112:6f327212ef96 41
Kojto 112:6f327212ef96 42 #ifdef __cplusplus
Kojto 112:6f327212ef96 43 extern "C" {
Kojto 112:6f327212ef96 44 #endif
Kojto 112:6f327212ef96 45
Kojto 112:6f327212ef96 46 #if defined(STM32L162xC) || defined(STM32L162xCA) || defined(STM32L162xD) || defined(STM32L162xE)
Kojto 112:6f327212ef96 47
Kojto 112:6f327212ef96 48 /* Includes ------------------------------------------------------------------*/
Kojto 112:6f327212ef96 49 #include "stm32l1xx_hal_def.h"
Kojto 112:6f327212ef96 50
Kojto 112:6f327212ef96 51 /** @addtogroup STM32L1xx_HAL_Driver
Kojto 112:6f327212ef96 52 * @{
Kojto 112:6f327212ef96 53 */
Kojto 112:6f327212ef96 54
Kojto 112:6f327212ef96 55 /** @addtogroup CRYP
Kojto 112:6f327212ef96 56 * @{
Kojto 112:6f327212ef96 57 */
Kojto 112:6f327212ef96 58
Kojto 112:6f327212ef96 59 /* Exported types ------------------------------------------------------------*/
Kojto 112:6f327212ef96 60
Kojto 112:6f327212ef96 61 /** @defgroup CRYP_Exported_Types CRYP Exported Types
Kojto 112:6f327212ef96 62 * @{
Kojto 112:6f327212ef96 63 */
Kojto 112:6f327212ef96 64
Kojto 112:6f327212ef96 65 /**
Kojto 112:6f327212ef96 66 * @brief CRYP Configuration Structure definition
Kojto 112:6f327212ef96 67 */
Kojto 112:6f327212ef96 68 typedef struct
Kojto 112:6f327212ef96 69 {
Kojto 112:6f327212ef96 70 uint32_t DataType; /*!< 32-bit data, 16-bit data, 8-bit data or 1-bit string.
Kojto 112:6f327212ef96 71 This parameter can be a value of @ref CRYP_Data_Type */
Kojto 112:6f327212ef96 72
Kojto 112:6f327212ef96 73 uint8_t* pKey; /*!< The key used for encryption/decryption */
Kojto 112:6f327212ef96 74
Kojto 112:6f327212ef96 75 uint8_t* pInitVect; /*!< The initialization vector used also as initialization
Kojto 112:6f327212ef96 76 counter in CTR mode */
Kojto 112:6f327212ef96 77
Kojto 112:6f327212ef96 78 }CRYP_InitTypeDef;
Kojto 112:6f327212ef96 79
Kojto 112:6f327212ef96 80 /**
Kojto 112:6f327212ef96 81 * @brief HAL CRYP State structures definition
Kojto 112:6f327212ef96 82 */
Kojto 112:6f327212ef96 83 typedef enum
Kojto 112:6f327212ef96 84 {
Kojto 112:6f327212ef96 85 HAL_CRYP_STATE_RESET = 0x00, /*!< CRYP not yet initialized or disabled */
Kojto 112:6f327212ef96 86 HAL_CRYP_STATE_READY = 0x01, /*!< CRYP initialized and ready for use */
Kojto 112:6f327212ef96 87 HAL_CRYP_STATE_BUSY = 0x02, /*!< CRYP internal processing is ongoing */
Kojto 112:6f327212ef96 88 HAL_CRYP_STATE_TIMEOUT = 0x03, /*!< CRYP timeout state */
Kojto 112:6f327212ef96 89 HAL_CRYP_STATE_ERROR = 0x04 /*!< CRYP error state */
Kojto 112:6f327212ef96 90
Kojto 112:6f327212ef96 91 }HAL_CRYP_STATETypeDef;
Kojto 112:6f327212ef96 92
Kojto 112:6f327212ef96 93 /**
Kojto 112:6f327212ef96 94 * @brief HAL CRYP phase structures definition
Kojto 112:6f327212ef96 95 */
Kojto 112:6f327212ef96 96 typedef enum
Kojto 112:6f327212ef96 97 {
Kojto 112:6f327212ef96 98 HAL_CRYP_PHASE_READY = 0x01, /*!< CRYP peripheral is ready for initialization. */
Kojto 112:6f327212ef96 99 HAL_CRYP_PHASE_PROCESS = 0x02, /*!< CRYP peripheral is in processing phase */
Kojto 112:6f327212ef96 100 }HAL_PhaseTypeDef;
Kojto 112:6f327212ef96 101
Kojto 112:6f327212ef96 102 /**
Kojto 112:6f327212ef96 103 * @brief CRYP handle Structure definition
Kojto 112:6f327212ef96 104 */
Kojto 112:6f327212ef96 105 typedef struct
Kojto 112:6f327212ef96 106 {
Kojto 112:6f327212ef96 107 CRYP_InitTypeDef Init; /*!< CRYP required parameters */
Kojto 112:6f327212ef96 108
Kojto 112:6f327212ef96 109 uint8_t *pCrypInBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) buffer */
Kojto 112:6f327212ef96 110
Kojto 112:6f327212ef96 111 uint8_t *pCrypOutBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) buffer */
Kojto 112:6f327212ef96 112
Kojto 112:6f327212ef96 113 __IO uint16_t CrypInCount; /*!< Counter of inputed data */
Kojto 112:6f327212ef96 114
Kojto 112:6f327212ef96 115 __IO uint16_t CrypOutCount; /*!< Counter of outputed data */
Kojto 112:6f327212ef96 116
Kojto 112:6f327212ef96 117 HAL_StatusTypeDef Status; /*!< CRYP peripheral status */
Kojto 112:6f327212ef96 118
Kojto 112:6f327212ef96 119 HAL_PhaseTypeDef Phase; /*!< CRYP peripheral phase */
Kojto 112:6f327212ef96 120
Kojto 112:6f327212ef96 121 DMA_HandleTypeDef *hdmain; /*!< CRYP In DMA handle parameters */
Kojto 112:6f327212ef96 122
Kojto 112:6f327212ef96 123 DMA_HandleTypeDef *hdmaout; /*!< CRYP Out DMA handle parameters */
Kojto 112:6f327212ef96 124
Kojto 112:6f327212ef96 125 HAL_LockTypeDef Lock; /*!< CRYP locking object */
Kojto 112:6f327212ef96 126
Kojto 112:6f327212ef96 127 __IO HAL_CRYP_STATETypeDef State; /*!< CRYP peripheral state */
Kojto 112:6f327212ef96 128
Kojto 112:6f327212ef96 129 }CRYP_HandleTypeDef;
Kojto 112:6f327212ef96 130
Kojto 112:6f327212ef96 131 /**
Kojto 112:6f327212ef96 132 * @}
Kojto 112:6f327212ef96 133 */
Kojto 112:6f327212ef96 134
Kojto 112:6f327212ef96 135 /* Exported constants --------------------------------------------------------*/
Kojto 112:6f327212ef96 136
Kojto 112:6f327212ef96 137 /** @defgroup CRYP_Exported_Constants CRYP Exported Constants
Kojto 112:6f327212ef96 138 * @{
Kojto 112:6f327212ef96 139 */
Kojto 112:6f327212ef96 140
Kojto 112:6f327212ef96 141 /** @defgroup CRYP_Data_Type CRYP Data Type
Kojto 112:6f327212ef96 142 * @{
Kojto 112:6f327212ef96 143 */
Kojto 112:6f327212ef96 144 #define CRYP_DATATYPE_32B ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 145 #define CRYP_DATATYPE_16B AES_CR_DATATYPE_0
Kojto 112:6f327212ef96 146 #define CRYP_DATATYPE_8B AES_CR_DATATYPE_1
Kojto 112:6f327212ef96 147 #define CRYP_DATATYPE_1B AES_CR_DATATYPE
Kojto 112:6f327212ef96 148
Kojto 112:6f327212ef96 149 #define IS_CRYP_DATATYPE(DATATYPE) (((DATATYPE) == CRYP_DATATYPE_32B) || \
Kojto 112:6f327212ef96 150 ((DATATYPE) == CRYP_DATATYPE_16B) || \
Kojto 112:6f327212ef96 151 ((DATATYPE) == CRYP_DATATYPE_8B) || \
Kojto 112:6f327212ef96 152 ((DATATYPE) == CRYP_DATATYPE_1B))
Kojto 112:6f327212ef96 153 /**
Kojto 112:6f327212ef96 154 * @}
Kojto 112:6f327212ef96 155 */
Kojto 112:6f327212ef96 156
Kojto 112:6f327212ef96 157 /** @defgroup CRYP_AlgoModeDirection CRYP Algo Mode Direction
Kojto 112:6f327212ef96 158 * @{
Kojto 112:6f327212ef96 159 */
Kojto 112:6f327212ef96 160 #define CRYP_CR_ALGOMODE_DIRECTION (uint32_t)(AES_CR_MODE|AES_CR_CHMOD)
Kojto 112:6f327212ef96 161
Kojto 112:6f327212ef96 162 #define CRYP_CR_ALGOMODE_AES_ECB_ENCRYPT ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 163 #define CRYP_CR_ALGOMODE_AES_ECB_KEYDERDECRYPT (AES_CR_MODE)
Kojto 112:6f327212ef96 164 #define CRYP_CR_ALGOMODE_AES_CBC_ENCRYPT (AES_CR_CHMOD_0)
Kojto 112:6f327212ef96 165 #define CRYP_CR_ALGOMODE_AES_CBC_KEYDERDECRYPT ((uint32_t)(AES_CR_CHMOD_0|AES_CR_MODE))
Kojto 112:6f327212ef96 166 #define CRYP_CR_ALGOMODE_AES_CTR_ENCRYPT (AES_CR_CHMOD_1)
Kojto 112:6f327212ef96 167 #define CRYP_CR_ALGOMODE_AES_CTR_DECRYPT ((uint32_t)(AES_CR_CHMOD_1 | AES_CR_MODE_1))
Kojto 112:6f327212ef96 168 /**
Kojto 112:6f327212ef96 169 * @}
Kojto 112:6f327212ef96 170 */
Kojto 112:6f327212ef96 171
Kojto 112:6f327212ef96 172 /** @defgroup CRYP_AES_Interrupts AES Interrupts
Kojto 112:6f327212ef96 173 * @{
Kojto 112:6f327212ef96 174 */
Kojto 112:6f327212ef96 175 #define AES_IT_CC AES_CR_CCIE /*!< Computation Complete interrupt */
Kojto 112:6f327212ef96 176 #define AES_IT_ERR AES_CR_ERRIE /*!< Error interrupt */
Kojto 112:6f327212ef96 177
Kojto 112:6f327212ef96 178 /**
Kojto 112:6f327212ef96 179 * @}
Kojto 112:6f327212ef96 180 */
Kojto 112:6f327212ef96 181
Kojto 112:6f327212ef96 182
Kojto 112:6f327212ef96 183 /** @defgroup CRYP_AES_Flags AES Flags
Kojto 112:6f327212ef96 184 * @{
Kojto 112:6f327212ef96 185 */
Kojto 112:6f327212ef96 186 #define AES_FLAG_CCF AES_SR_CCF /*!< Computation Complete Flag */
Kojto 112:6f327212ef96 187 #define AES_FLAG_RDERR AES_SR_RDERR /*!< Read Error Flag */
Kojto 112:6f327212ef96 188 #define AES_FLAG_WRERR AES_SR_WRERR /*!< Write Error Flag */
Kojto 112:6f327212ef96 189
Kojto 112:6f327212ef96 190 /**
Kojto 112:6f327212ef96 191 * @}
Kojto 112:6f327212ef96 192 */
Kojto 112:6f327212ef96 193
Kojto 112:6f327212ef96 194 /** @defgroup CRYP_AES_Clear_Flags AES Clear Flags
Kojto 112:6f327212ef96 195 * @{
Kojto 112:6f327212ef96 196 */
Kojto 112:6f327212ef96 197 #define AES_CLEARFLAG_CCF AES_CR_CCFC /*!< Computation Complete Flag Clear */
Kojto 112:6f327212ef96 198 #define AES_CLEARFLAG_RDERR AES_CR_ERRC /*!< Read Error Clear */
Kojto 112:6f327212ef96 199 #define AES_CLEARFLAG_WRERR AES_CR_ERRC /*!< Write Error Clear */
Kojto 112:6f327212ef96 200
Kojto 112:6f327212ef96 201 /**
Kojto 112:6f327212ef96 202 * @}
Kojto 112:6f327212ef96 203 */
Kojto 112:6f327212ef96 204
Kojto 112:6f327212ef96 205 /**
Kojto 112:6f327212ef96 206 * @}
Kojto 112:6f327212ef96 207 */
Kojto 112:6f327212ef96 208
Kojto 112:6f327212ef96 209 /* Exported macro ------------------------------------------------------------*/
Kojto 112:6f327212ef96 210
Kojto 112:6f327212ef96 211 /** @defgroup CRYP_Exported_Macros CRYP Exported Macros
Kojto 112:6f327212ef96 212 * @{
Kojto 112:6f327212ef96 213 */
Kojto 112:6f327212ef96 214
Kojto 112:6f327212ef96 215 /** @brief Reset CRYP handle state
Kojto 112:6f327212ef96 216 * @param __HANDLE__: specifies the CRYP Handle.
Kojto 112:6f327212ef96 217 * @retval None
Kojto 112:6f327212ef96 218 */
Kojto 112:6f327212ef96 219 #define __HAL_CRYP_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_CRYP_STATE_RESET)
Kojto 112:6f327212ef96 220
Kojto 112:6f327212ef96 221 /**
Kojto 112:6f327212ef96 222 * @brief Enable/Disable the CRYP peripheral.
Kojto 112:6f327212ef96 223 * @retval None
Kojto 112:6f327212ef96 224 */
Kojto 112:6f327212ef96 225 #define __HAL_CRYP_ENABLE() SET_BIT(AES->CR, AES_CR_EN)
Kojto 112:6f327212ef96 226 #define __HAL_CRYP_DISABLE() CLEAR_BIT(AES->CR, AES_CR_EN)
Kojto 112:6f327212ef96 227
Kojto 112:6f327212ef96 228 /**
Kojto 112:6f327212ef96 229 * @brief Set the algorithm mode: AES-ECB, AES-CBC, AES-CTR, DES-ECB, DES-CBC,...
Kojto 112:6f327212ef96 230 * @param __MODE__: The algorithm mode.
Kojto 112:6f327212ef96 231 * @retval None
Kojto 112:6f327212ef96 232 */
Kojto 112:6f327212ef96 233 #define __HAL_CRYP_SET_MODE(__MODE__) SET_BIT(AES->CR, (__MODE__))
Kojto 112:6f327212ef96 234
Kojto 112:6f327212ef96 235
Kojto 112:6f327212ef96 236 /** @brief Check whether the specified CRYP flag is set or not.
Kojto 112:6f327212ef96 237 * @param __FLAG__: specifies the flag to check.
Kojto 112:6f327212ef96 238 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 239 * @arg AES_FLAG_CCF : Computation Complete Flag
Kojto 112:6f327212ef96 240 * @arg AES_FLAG_RDERR : Read Error Flag
Kojto 112:6f327212ef96 241 * @arg AES_FLAG_WRERR : Write Error Flag
Kojto 112:6f327212ef96 242 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 112:6f327212ef96 243 */
Kojto 112:6f327212ef96 244 #define __HAL_CRYP_GET_FLAG(__FLAG__) ((AES->SR & (__FLAG__)) == (__FLAG__))
Kojto 112:6f327212ef96 245
Kojto 112:6f327212ef96 246 /** @brief Clear the CRYP pending flag.
Kojto 112:6f327212ef96 247 * @param __HANDLE__: specifies the CRYP handle.
Kojto 112:6f327212ef96 248 * @param __FLAG__: specifies the flag to clear.
Kojto 112:6f327212ef96 249 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 250 * @arg AES_CLEARFLAG_CCF : Computation Complete Clear Flag
Kojto 112:6f327212ef96 251 * @arg AES_CLEARFLAG_RDERR : Read Error Clear
Kojto 112:6f327212ef96 252 * @arg AES_CLEARFLAG_WRERR : Write Error Clear
Kojto 112:6f327212ef96 253 * @retval None
Kojto 112:6f327212ef96 254 */
Kojto 112:6f327212ef96 255 #define __HAL_CRYP_CLEAR_FLAG(__HANDLE__, __FLAG__) SET_BIT(AES->CR, (__FLAG__))
Kojto 112:6f327212ef96 256
Kojto 112:6f327212ef96 257 /**
Kojto 112:6f327212ef96 258 * @brief Enable the CRYP interrupt.
Kojto 112:6f327212ef96 259 * @param __INTERRUPT__: CRYP Interrupt.
Kojto 112:6f327212ef96 260 * @retval None
Kojto 112:6f327212ef96 261 */
Kojto 112:6f327212ef96 262 #define __HAL_CRYP_ENABLE_IT(__INTERRUPT__) SET_BIT(AES->CR, (__INTERRUPT__))
Kojto 112:6f327212ef96 263
Kojto 112:6f327212ef96 264 /**
Kojto 112:6f327212ef96 265 * @brief Disable the CRYP interrupt.
Kojto 112:6f327212ef96 266 * @param __INTERRUPT__: CRYP interrupt.
Kojto 112:6f327212ef96 267 * @retval None
Kojto 112:6f327212ef96 268 */
Kojto 112:6f327212ef96 269 #define __HAL_CRYP_DISABLE_IT(__INTERRUPT__) CLEAR_BIT(AES->CR, (__INTERRUPT__))
Kojto 112:6f327212ef96 270
Kojto 112:6f327212ef96 271 /** @brief Checks if the specified CRYP interrupt source is enabled or disabled.
Kojto 112:6f327212ef96 272 * @param __HANDLE__: CRYP handle
Kojto 112:6f327212ef96 273 * @param __INTERRUPT__: CRYP interrupt source to check
Kojto 112:6f327212ef96 274 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 275 * @arg AES_IT_CC : Computation Complete interrupt
Kojto 112:6f327212ef96 276 * @arg AES_IT_ERR : Error interrupt (used for RDERR and WRERR)
Kojto 112:6f327212ef96 277 * @retval State of interruption (SET or RESET)
Kojto 112:6f327212ef96 278 */
Kojto 112:6f327212ef96 279 #define __HAL_CRYP_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) \
Kojto 112:6f327212ef96 280 (( (AES->CR & (__INTERRUPT__)) == (__INTERRUPT__) \
Kojto 112:6f327212ef96 281 )? SET : RESET \
Kojto 112:6f327212ef96 282 )
Kojto 112:6f327212ef96 283
Kojto 112:6f327212ef96 284 /** @brief Clear the CRYP pending IT.
Kojto 112:6f327212ef96 285 * @param __HANDLE__: specifies the CRYP handle.
Kojto 112:6f327212ef96 286 * @param __IT__: specifies the IT to clear.
Kojto 112:6f327212ef96 287 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 288 * @arg AES_CLEARFLAG_CCF : Computation Complete Clear Flag
Kojto 112:6f327212ef96 289 * @arg AES_CLEARFLAG_RDERR : Read Error Clear
Kojto 112:6f327212ef96 290 * @arg AES_CLEARFLAG_WRERR : Write Error Clear
Kojto 112:6f327212ef96 291 * @retval None
Kojto 112:6f327212ef96 292 */
Kojto 112:6f327212ef96 293 #define __HAL_CRYP_CLEAR_IT(__HANDLE__, __IT__) SET_BIT(AES->CR, (__IT__))
Kojto 112:6f327212ef96 294
Kojto 112:6f327212ef96 295 /**
Kojto 112:6f327212ef96 296 * @}
Kojto 112:6f327212ef96 297 */
Kojto 112:6f327212ef96 298
Kojto 112:6f327212ef96 299 /* Include CRYP HAL Extension module */
Kojto 112:6f327212ef96 300 #include "stm32l1xx_hal_cryp_ex.h"
Kojto 112:6f327212ef96 301
Kojto 112:6f327212ef96 302 /* Exported functions --------------------------------------------------------*/
Kojto 112:6f327212ef96 303
Kojto 112:6f327212ef96 304 /** @addtogroup CRYP_Exported_Functions
Kojto 112:6f327212ef96 305 * @{
Kojto 112:6f327212ef96 306 */
Kojto 112:6f327212ef96 307
Kojto 112:6f327212ef96 308 /** @addtogroup CRYP_Exported_Functions_Group1
Kojto 112:6f327212ef96 309 * @{
Kojto 112:6f327212ef96 310 */
Kojto 112:6f327212ef96 311
Kojto 112:6f327212ef96 312 /* Initialization/de-initialization functions *********************************/
Kojto 112:6f327212ef96 313 HAL_StatusTypeDef HAL_CRYP_Init(CRYP_HandleTypeDef *hcryp);
Kojto 112:6f327212ef96 314 HAL_StatusTypeDef HAL_CRYP_DeInit(CRYP_HandleTypeDef *hcryp);
Kojto 112:6f327212ef96 315
Kojto 112:6f327212ef96 316 /* MSP functions *************************************************************/
Kojto 112:6f327212ef96 317 void HAL_CRYP_MspInit(CRYP_HandleTypeDef *hcryp);
Kojto 112:6f327212ef96 318 void HAL_CRYP_MspDeInit(CRYP_HandleTypeDef *hcryp);
Kojto 112:6f327212ef96 319
Kojto 112:6f327212ef96 320 /**
Kojto 112:6f327212ef96 321 * @}
Kojto 112:6f327212ef96 322 */
Kojto 112:6f327212ef96 323
Kojto 112:6f327212ef96 324 /** @addtogroup CRYP_Exported_Functions_Group2
Kojto 112:6f327212ef96 325 * @{
Kojto 112:6f327212ef96 326 */
Kojto 112:6f327212ef96 327
Kojto 112:6f327212ef96 328 /* AES encryption/decryption using polling ***********************************/
Kojto 112:6f327212ef96 329 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 112:6f327212ef96 330 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 112:6f327212ef96 331 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 112:6f327212ef96 332 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 112:6f327212ef96 333 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 112:6f327212ef96 334 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 112:6f327212ef96 335
Kojto 112:6f327212ef96 336 /* AES encryption/decryption using interrupt *********************************/
Kojto 112:6f327212ef96 337 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 112:6f327212ef96 338 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 112:6f327212ef96 339 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 112:6f327212ef96 340 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 112:6f327212ef96 341 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 112:6f327212ef96 342 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 112:6f327212ef96 343
Kojto 112:6f327212ef96 344 /* AES encryption/decryption using DMA ***************************************/
Kojto 112:6f327212ef96 345 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 112:6f327212ef96 346 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 112:6f327212ef96 347 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 112:6f327212ef96 348 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 112:6f327212ef96 349 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 112:6f327212ef96 350 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 112:6f327212ef96 351
Kojto 112:6f327212ef96 352 /**
Kojto 112:6f327212ef96 353 * @}
Kojto 112:6f327212ef96 354 */
Kojto 112:6f327212ef96 355
Kojto 112:6f327212ef96 356 /** @addtogroup CRYP_Exported_Functions_Group3
Kojto 112:6f327212ef96 357 * @{
Kojto 112:6f327212ef96 358 */
Kojto 112:6f327212ef96 359
Kojto 112:6f327212ef96 360 /* CallBack functions ********************************************************/
Kojto 112:6f327212ef96 361 void HAL_CRYP_InCpltCallback(CRYP_HandleTypeDef *hcryp);
Kojto 112:6f327212ef96 362 void HAL_CRYP_OutCpltCallback(CRYP_HandleTypeDef *hcryp);
Kojto 112:6f327212ef96 363 void HAL_CRYP_ErrorCallback(CRYP_HandleTypeDef *hcryp);
Kojto 112:6f327212ef96 364
Kojto 112:6f327212ef96 365 /**
Kojto 112:6f327212ef96 366 * @}
Kojto 112:6f327212ef96 367 */
Kojto 112:6f327212ef96 368
Kojto 112:6f327212ef96 369 /** @addtogroup CRYP_Exported_Functions_Group4
Kojto 112:6f327212ef96 370 * @{
Kojto 112:6f327212ef96 371 */
Kojto 112:6f327212ef96 372
Kojto 112:6f327212ef96 373 /* Processing functions ********************************************************/
Kojto 112:6f327212ef96 374 void HAL_CRYP_IRQHandler(CRYP_HandleTypeDef *hcryp);
Kojto 112:6f327212ef96 375
Kojto 112:6f327212ef96 376 /**
Kojto 112:6f327212ef96 377 * @}
Kojto 112:6f327212ef96 378 */
Kojto 112:6f327212ef96 379
Kojto 112:6f327212ef96 380 /** @addtogroup CRYP_Exported_Functions_Group5
Kojto 112:6f327212ef96 381 * @{
Kojto 112:6f327212ef96 382 */
Kojto 112:6f327212ef96 383
Kojto 112:6f327212ef96 384 /* Peripheral State functions **************************************************/
Kojto 112:6f327212ef96 385 HAL_CRYP_STATETypeDef HAL_CRYP_GetState(CRYP_HandleTypeDef *hcryp);
Kojto 112:6f327212ef96 386
Kojto 112:6f327212ef96 387 /**
Kojto 112:6f327212ef96 388 * @}
Kojto 112:6f327212ef96 389 */
Kojto 112:6f327212ef96 390
Kojto 112:6f327212ef96 391 /**
Kojto 112:6f327212ef96 392 * @}
Kojto 112:6f327212ef96 393 */
Kojto 112:6f327212ef96 394
Kojto 112:6f327212ef96 395 /**
Kojto 112:6f327212ef96 396 * @}
Kojto 112:6f327212ef96 397 */
Kojto 112:6f327212ef96 398
Kojto 112:6f327212ef96 399 /**
Kojto 112:6f327212ef96 400 * @}
Kojto 112:6f327212ef96 401 */
Kojto 112:6f327212ef96 402
Kojto 112:6f327212ef96 403 #endif /* STM32L162xC || STM32L162xCA || STM32L162xD || STM32L162xE*/
Kojto 112:6f327212ef96 404
Kojto 112:6f327212ef96 405 #ifdef __cplusplus
Kojto 112:6f327212ef96 406 }
Kojto 112:6f327212ef96 407 #endif
Kojto 112:6f327212ef96 408
Kojto 112:6f327212ef96 409 #endif /* __STM32L1xx_HAL_CRYP_H */
Kojto 112:6f327212ef96 410
Kojto 112:6f327212ef96 411 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/