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:
110:165afa46840b
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 108:34e6b704fe68 1 /**
Kojto 108:34e6b704fe68 2 ******************************************************************************
Kojto 108:34e6b704fe68 3 * @file stm32f4xx_hal_cryp.h
Kojto 108:34e6b704fe68 4 * @author MCD Application Team
Kojto 110:165afa46840b 5 * @version V1.4.1
Kojto 110:165afa46840b 6 * @date 09-October-2015
Kojto 108:34e6b704fe68 7 * @brief Header file of CRYP HAL module.
Kojto 108:34e6b704fe68 8 ******************************************************************************
Kojto 108:34e6b704fe68 9 * @attention
Kojto 108:34e6b704fe68 10 *
Kojto 108:34e6b704fe68 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 108:34e6b704fe68 12 *
Kojto 108:34e6b704fe68 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 108:34e6b704fe68 14 * are permitted provided that the following conditions are met:
Kojto 108:34e6b704fe68 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 108:34e6b704fe68 16 * this list of conditions and the following disclaimer.
Kojto 108:34e6b704fe68 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 108:34e6b704fe68 18 * this list of conditions and the following disclaimer in the documentation
Kojto 108:34e6b704fe68 19 * and/or other materials provided with the distribution.
Kojto 108:34e6b704fe68 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 108:34e6b704fe68 21 * may be used to endorse or promote products derived from this software
Kojto 108:34e6b704fe68 22 * without specific prior written permission.
Kojto 108:34e6b704fe68 23 *
Kojto 108:34e6b704fe68 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 108:34e6b704fe68 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 108:34e6b704fe68 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 108:34e6b704fe68 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 108:34e6b704fe68 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 108:34e6b704fe68 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 108:34e6b704fe68 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 108:34e6b704fe68 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 108:34e6b704fe68 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 108:34e6b704fe68 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 108:34e6b704fe68 34 *
Kojto 108:34e6b704fe68 35 ******************************************************************************
Kojto 108:34e6b704fe68 36 */
Kojto 108:34e6b704fe68 37
Kojto 108:34e6b704fe68 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 108:34e6b704fe68 39 #ifndef __STM32F4xx_HAL_CRYP_H
Kojto 108:34e6b704fe68 40 #define __STM32F4xx_HAL_CRYP_H
Kojto 108:34e6b704fe68 41
Kojto 108:34e6b704fe68 42 #ifdef __cplusplus
Kojto 108:34e6b704fe68 43 extern "C" {
Kojto 108:34e6b704fe68 44 #endif
Kojto 108:34e6b704fe68 45
Kojto 110:165afa46840b 46 #if defined(STM32F415xx) || defined(STM32F417xx) || defined(STM32F437xx) || defined(STM32F439xx) || defined(STM32F479xx)
Kojto 108:34e6b704fe68 47 /* Includes ------------------------------------------------------------------*/
Kojto 108:34e6b704fe68 48 #include "stm32f4xx_hal_def.h"
Kojto 108:34e6b704fe68 49
Kojto 108:34e6b704fe68 50 /** @addtogroup STM32F4xx_HAL_Driver
Kojto 108:34e6b704fe68 51 * @{
Kojto 108:34e6b704fe68 52 */
Kojto 108:34e6b704fe68 53
Kojto 108:34e6b704fe68 54 /** @addtogroup CRYP
Kojto 108:34e6b704fe68 55 * @{
Kojto 108:34e6b704fe68 56 */
Kojto 108:34e6b704fe68 57
Kojto 108:34e6b704fe68 58 /* Exported types ------------------------------------------------------------*/
Kojto 108:34e6b704fe68 59
Kojto 108:34e6b704fe68 60 /** @defgroup CRYP_Exported_Types CRYP Exported Types
Kojto 108:34e6b704fe68 61 * @{
Kojto 108:34e6b704fe68 62 */
Kojto 108:34e6b704fe68 63
Kojto 108:34e6b704fe68 64 /** @defgroup CRYP_Exported_Types_Group1 CRYP Configuration Structure definition
Kojto 108:34e6b704fe68 65 * @{
Kojto 108:34e6b704fe68 66 */
Kojto 108:34e6b704fe68 67
Kojto 108:34e6b704fe68 68 typedef struct
Kojto 108:34e6b704fe68 69 {
Kojto 108:34e6b704fe68 70 uint32_t DataType; /*!< 32-bit data, 16-bit data, 8-bit data or 1-bit string.
Kojto 108:34e6b704fe68 71 This parameter can be a value of @ref CRYP CRYP_Data_Type */
Kojto 108:34e6b704fe68 72
Kojto 108:34e6b704fe68 73 uint32_t KeySize; /*!< Used only in AES mode only : 128, 192 or 256 bit key length.
Kojto 108:34e6b704fe68 74 This parameter can be a value of @ref CRYP CRYP_Key_Size */
Kojto 108:34e6b704fe68 75
Kojto 108:34e6b704fe68 76 uint8_t* pKey; /*!< The key used for encryption/decryption */
Kojto 108:34e6b704fe68 77
Kojto 108:34e6b704fe68 78 uint8_t* pInitVect; /*!< The initialization vector used also as initialization
Kojto 108:34e6b704fe68 79 counter in CTR mode */
Kojto 108:34e6b704fe68 80
Kojto 108:34e6b704fe68 81 uint8_t IVSize; /*!< The size of initialization vector.
Kojto 108:34e6b704fe68 82 This parameter (called nonce size in CCM) is used only
Kojto 108:34e6b704fe68 83 in AES-128/192/256 encryption/decryption CCM mode */
Kojto 108:34e6b704fe68 84
Kojto 108:34e6b704fe68 85 uint8_t TagSize; /*!< The size of returned authentication TAG.
Kojto 108:34e6b704fe68 86 This parameter is used only in AES-128/192/256
Kojto 108:34e6b704fe68 87 encryption/decryption CCM mode */
Kojto 108:34e6b704fe68 88
Kojto 108:34e6b704fe68 89 uint8_t* Header; /*!< The header used in GCM and CCM modes */
Kojto 108:34e6b704fe68 90
Kojto 108:34e6b704fe68 91 uint32_t HeaderSize; /*!< The size of header buffer in bytes */
Kojto 108:34e6b704fe68 92
Kojto 108:34e6b704fe68 93 uint8_t* pScratch; /*!< Scratch buffer used to append the header. It's size must be equal to header size + 21 bytes.
Kojto 108:34e6b704fe68 94 This parameter is used only in AES-128/192/256 encryption/decryption CCM mode */
Kojto 108:34e6b704fe68 95 }CRYP_InitTypeDef;
Kojto 108:34e6b704fe68 96
Kojto 108:34e6b704fe68 97 /**
Kojto 108:34e6b704fe68 98 * @}
Kojto 108:34e6b704fe68 99 */
Kojto 108:34e6b704fe68 100
Kojto 108:34e6b704fe68 101 /** @defgroup CRYP_Exported_Types_Group2 CRYP State structures definition
Kojto 108:34e6b704fe68 102 * @{
Kojto 108:34e6b704fe68 103 */
Kojto 108:34e6b704fe68 104
Kojto 108:34e6b704fe68 105
Kojto 108:34e6b704fe68 106 typedef enum
Kojto 108:34e6b704fe68 107 {
Kojto 108:34e6b704fe68 108 HAL_CRYP_STATE_RESET = 0x00, /*!< CRYP not yet initialized or disabled */
Kojto 108:34e6b704fe68 109 HAL_CRYP_STATE_READY = 0x01, /*!< CRYP initialized and ready for use */
Kojto 108:34e6b704fe68 110 HAL_CRYP_STATE_BUSY = 0x02, /*!< CRYP internal processing is ongoing */
Kojto 108:34e6b704fe68 111 HAL_CRYP_STATE_TIMEOUT = 0x03, /*!< CRYP timeout state */
Kojto 108:34e6b704fe68 112 HAL_CRYP_STATE_ERROR = 0x04 /*!< CRYP error state */
Kojto 108:34e6b704fe68 113 }HAL_CRYP_STATETypeDef;
Kojto 108:34e6b704fe68 114
Kojto 108:34e6b704fe68 115 /**
Kojto 108:34e6b704fe68 116 * @}
Kojto 108:34e6b704fe68 117 */
Kojto 108:34e6b704fe68 118
Kojto 108:34e6b704fe68 119 /** @defgroup CRYP_Exported_Types_Group3 CRYP phase structures definition
Kojto 108:34e6b704fe68 120 * @{
Kojto 108:34e6b704fe68 121 */
Kojto 108:34e6b704fe68 122
Kojto 108:34e6b704fe68 123
Kojto 108:34e6b704fe68 124 typedef enum
Kojto 108:34e6b704fe68 125 {
Kojto 108:34e6b704fe68 126 HAL_CRYP_PHASE_READY = 0x01, /*!< CRYP peripheral is ready for initialization. */
Kojto 108:34e6b704fe68 127 HAL_CRYP_PHASE_PROCESS = 0x02, /*!< CRYP peripheral is in processing phase */
Kojto 108:34e6b704fe68 128 HAL_CRYP_PHASE_FINAL = 0x03 /*!< CRYP peripheral is in final phase
Kojto 108:34e6b704fe68 129 This is relevant only with CCM and GCM modes */
Kojto 108:34e6b704fe68 130 }HAL_PhaseTypeDef;
Kojto 108:34e6b704fe68 131
Kojto 108:34e6b704fe68 132 /**
Kojto 108:34e6b704fe68 133 * @}
Kojto 108:34e6b704fe68 134 */
Kojto 108:34e6b704fe68 135
Kojto 108:34e6b704fe68 136 /** @defgroup CRYP_Exported_Types_Group4 CRYP handle Structure definition
Kojto 108:34e6b704fe68 137 * @{
Kojto 108:34e6b704fe68 138 */
Kojto 108:34e6b704fe68 139
Kojto 108:34e6b704fe68 140 typedef struct
Kojto 108:34e6b704fe68 141 {
Kojto 108:34e6b704fe68 142 CRYP_TypeDef *Instance; /*!< CRYP registers base address */
Kojto 108:34e6b704fe68 143
Kojto 108:34e6b704fe68 144 CRYP_InitTypeDef Init; /*!< CRYP required parameters */
Kojto 108:34e6b704fe68 145
Kojto 108:34e6b704fe68 146 uint8_t *pCrypInBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) buffer */
Kojto 108:34e6b704fe68 147
Kojto 108:34e6b704fe68 148 uint8_t *pCrypOutBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) buffer */
Kojto 108:34e6b704fe68 149
Kojto 108:34e6b704fe68 150 __IO uint16_t CrypInCount; /*!< Counter of inputed data */
Kojto 108:34e6b704fe68 151
Kojto 108:34e6b704fe68 152 __IO uint16_t CrypOutCount; /*!< Counter of outputted data */
Kojto 108:34e6b704fe68 153
Kojto 108:34e6b704fe68 154 HAL_StatusTypeDef Status; /*!< CRYP peripheral status */
Kojto 108:34e6b704fe68 155
Kojto 108:34e6b704fe68 156 HAL_PhaseTypeDef Phase; /*!< CRYP peripheral phase */
Kojto 108:34e6b704fe68 157
Kojto 108:34e6b704fe68 158 DMA_HandleTypeDef *hdmain; /*!< CRYP In DMA handle parameters */
Kojto 108:34e6b704fe68 159
Kojto 108:34e6b704fe68 160 DMA_HandleTypeDef *hdmaout; /*!< CRYP Out DMA handle parameters */
Kojto 108:34e6b704fe68 161
Kojto 108:34e6b704fe68 162 HAL_LockTypeDef Lock; /*!< CRYP locking object */
Kojto 108:34e6b704fe68 163
Kojto 108:34e6b704fe68 164 __IO HAL_CRYP_STATETypeDef State; /*!< CRYP peripheral state */
Kojto 108:34e6b704fe68 165 }CRYP_HandleTypeDef;
Kojto 108:34e6b704fe68 166
Kojto 108:34e6b704fe68 167 /**
Kojto 108:34e6b704fe68 168 * @}
Kojto 108:34e6b704fe68 169 */
Kojto 108:34e6b704fe68 170
Kojto 108:34e6b704fe68 171 /**
Kojto 108:34e6b704fe68 172 * @}
Kojto 108:34e6b704fe68 173 */
Kojto 108:34e6b704fe68 174
Kojto 108:34e6b704fe68 175 /* Exported constants --------------------------------------------------------*/
Kojto 108:34e6b704fe68 176 /** @defgroup CRYP_Exported_Constants CRYP Exported Constants
Kojto 108:34e6b704fe68 177 * @{
Kojto 108:34e6b704fe68 178 */
Kojto 108:34e6b704fe68 179
Kojto 108:34e6b704fe68 180 /** @defgroup CRYP_Exported_Constants_Group1 CRYP CRYP_Key_Size
Kojto 108:34e6b704fe68 181 * @{
Kojto 108:34e6b704fe68 182 */
Kojto 108:34e6b704fe68 183 #define CRYP_KEYSIZE_128B ((uint32_t)0x00000000)
Kojto 108:34e6b704fe68 184 #define CRYP_KEYSIZE_192B CRYP_CR_KEYSIZE_0
Kojto 108:34e6b704fe68 185 #define CRYP_KEYSIZE_256B CRYP_CR_KEYSIZE_1
Kojto 108:34e6b704fe68 186 /**
Kojto 108:34e6b704fe68 187 * @}
Kojto 108:34e6b704fe68 188 */
Kojto 108:34e6b704fe68 189
Kojto 108:34e6b704fe68 190 /** @defgroup CRYP_Exported_Constants_Group2 CRYP CRYP_Data_Type
Kojto 108:34e6b704fe68 191 * @{
Kojto 108:34e6b704fe68 192 */
Kojto 108:34e6b704fe68 193 #define CRYP_DATATYPE_32B ((uint32_t)0x00000000)
Kojto 108:34e6b704fe68 194 #define CRYP_DATATYPE_16B CRYP_CR_DATATYPE_0
Kojto 108:34e6b704fe68 195 #define CRYP_DATATYPE_8B CRYP_CR_DATATYPE_1
Kojto 108:34e6b704fe68 196 #define CRYP_DATATYPE_1B CRYP_CR_DATATYPE
Kojto 108:34e6b704fe68 197 /**
Kojto 108:34e6b704fe68 198 * @}
Kojto 108:34e6b704fe68 199 */
Kojto 108:34e6b704fe68 200
Kojto 108:34e6b704fe68 201 /** @defgroup CRYP_Exported_Constants_Group3 CRYP CRYP_AlgoModeDirection
Kojto 108:34e6b704fe68 202 * @{
Kojto 108:34e6b704fe68 203 */
Kojto 108:34e6b704fe68 204 #define CRYP_CR_ALGOMODE_DIRECTION ((uint32_t)0x0008003C)
Kojto 108:34e6b704fe68 205 #define CRYP_CR_ALGOMODE_TDES_ECB_ENCRYPT ((uint32_t)0x00000000)
Kojto 108:34e6b704fe68 206 #define CRYP_CR_ALGOMODE_TDES_ECB_DECRYPT ((uint32_t)0x00000004)
Kojto 108:34e6b704fe68 207 #define CRYP_CR_ALGOMODE_TDES_CBC_ENCRYPT ((uint32_t)0x00000008)
Kojto 108:34e6b704fe68 208 #define CRYP_CR_ALGOMODE_TDES_CBC_DECRYPT ((uint32_t)0x0000000C)
Kojto 108:34e6b704fe68 209 #define CRYP_CR_ALGOMODE_DES_ECB_ENCRYPT ((uint32_t)0x00000010)
Kojto 108:34e6b704fe68 210 #define CRYP_CR_ALGOMODE_DES_ECB_DECRYPT ((uint32_t)0x00000014)
Kojto 108:34e6b704fe68 211 #define CRYP_CR_ALGOMODE_DES_CBC_ENCRYPT ((uint32_t)0x00000018)
Kojto 108:34e6b704fe68 212 #define CRYP_CR_ALGOMODE_DES_CBC_DECRYPT ((uint32_t)0x0000001C)
Kojto 108:34e6b704fe68 213 #define CRYP_CR_ALGOMODE_AES_ECB_ENCRYPT ((uint32_t)0x00000020)
Kojto 108:34e6b704fe68 214 #define CRYP_CR_ALGOMODE_AES_ECB_DECRYPT ((uint32_t)0x00000024)
Kojto 108:34e6b704fe68 215 #define CRYP_CR_ALGOMODE_AES_CBC_ENCRYPT ((uint32_t)0x00000028)
Kojto 108:34e6b704fe68 216 #define CRYP_CR_ALGOMODE_AES_CBC_DECRYPT ((uint32_t)0x0000002C)
Kojto 108:34e6b704fe68 217 #define CRYP_CR_ALGOMODE_AES_CTR_ENCRYPT ((uint32_t)0x00000030)
Kojto 108:34e6b704fe68 218 #define CRYP_CR_ALGOMODE_AES_CTR_DECRYPT ((uint32_t)0x00000034)
Kojto 108:34e6b704fe68 219 /**
Kojto 108:34e6b704fe68 220 * @}
Kojto 108:34e6b704fe68 221 */
Kojto 108:34e6b704fe68 222
Kojto 108:34e6b704fe68 223 /** @defgroup CRYP_Exported_Constants_Group4 CRYP CRYP_Interrupt
Kojto 108:34e6b704fe68 224 * @{
Kojto 108:34e6b704fe68 225 */
Kojto 108:34e6b704fe68 226 #define CRYP_IT_INI ((uint32_t)CRYP_IMSCR_INIM) /*!< Input FIFO Interrupt */
Kojto 108:34e6b704fe68 227 #define CRYP_IT_OUTI ((uint32_t)CRYP_IMSCR_OUTIM) /*!< Output FIFO Interrupt */
Kojto 108:34e6b704fe68 228 /**
Kojto 108:34e6b704fe68 229 * @}
Kojto 108:34e6b704fe68 230 */
Kojto 108:34e6b704fe68 231
Kojto 108:34e6b704fe68 232 /** @defgroup CRYP_Exported_Constants_Group5 CRYP CRYP_Flags
Kojto 108:34e6b704fe68 233 * @{
Kojto 108:34e6b704fe68 234 */
Kojto 108:34e6b704fe68 235 #define CRYP_FLAG_BUSY ((uint32_t)0x00000010) /*!< The CRYP core is currently
Kojto 108:34e6b704fe68 236 processing a block of data
Kojto 108:34e6b704fe68 237 or a key preparation (for
Kojto 108:34e6b704fe68 238 AES decryption). */
Kojto 108:34e6b704fe68 239 #define CRYP_FLAG_IFEM ((uint32_t)0x00000001) /*!< Input FIFO is empty */
Kojto 108:34e6b704fe68 240 #define CRYP_FLAG_IFNF ((uint32_t)0x00000002) /*!< Input FIFO is not Full */
Kojto 108:34e6b704fe68 241 #define CRYP_FLAG_OFNE ((uint32_t)0x00000004) /*!< Output FIFO is not empty */
Kojto 108:34e6b704fe68 242 #define CRYP_FLAG_OFFU ((uint32_t)0x00000008) /*!< Output FIFO is Full */
Kojto 108:34e6b704fe68 243 #define CRYP_FLAG_OUTRIS ((uint32_t)0x01000002) /*!< Output FIFO service raw
Kojto 108:34e6b704fe68 244 interrupt status */
Kojto 108:34e6b704fe68 245 #define CRYP_FLAG_INRIS ((uint32_t)0x01000001) /*!< Input FIFO service raw
Kojto 108:34e6b704fe68 246 interrupt status */
Kojto 108:34e6b704fe68 247 /**
Kojto 108:34e6b704fe68 248 * @}
Kojto 108:34e6b704fe68 249 */
Kojto 108:34e6b704fe68 250
Kojto 108:34e6b704fe68 251 /**
Kojto 108:34e6b704fe68 252 * @}
Kojto 108:34e6b704fe68 253 */
Kojto 108:34e6b704fe68 254
Kojto 108:34e6b704fe68 255 /* Exported macro ------------------------------------------------------------*/
Kojto 108:34e6b704fe68 256 /** @defgroup CRYP_Exported_Macros CRYP Exported Macros
Kojto 108:34e6b704fe68 257 * @{
Kojto 108:34e6b704fe68 258 */
Kojto 108:34e6b704fe68 259
Kojto 108:34e6b704fe68 260 /** @brief Reset CRYP handle state
Kojto 108:34e6b704fe68 261 * @param __HANDLE__: specifies the CRYP handle.
Kojto 108:34e6b704fe68 262 * @retval None
Kojto 108:34e6b704fe68 263 */
Kojto 108:34e6b704fe68 264 #define __HAL_CRYP_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_CRYP_STATE_RESET)
Kojto 108:34e6b704fe68 265
Kojto 108:34e6b704fe68 266 /**
Kojto 108:34e6b704fe68 267 * @brief Enable/Disable the CRYP peripheral.
Kojto 108:34e6b704fe68 268 * @param __HANDLE__: specifies the CRYP handle.
Kojto 108:34e6b704fe68 269 * @retval None
Kojto 108:34e6b704fe68 270 */
Kojto 108:34e6b704fe68 271 #define __HAL_CRYP_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= CRYP_CR_CRYPEN)
Kojto 108:34e6b704fe68 272 #define __HAL_CRYP_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~CRYP_CR_CRYPEN)
Kojto 108:34e6b704fe68 273
Kojto 108:34e6b704fe68 274 /**
Kojto 108:34e6b704fe68 275 * @brief Flush the data FIFO.
Kojto 108:34e6b704fe68 276 * @param __HANDLE__: specifies the CRYP handle.
Kojto 108:34e6b704fe68 277 * @retval None
Kojto 108:34e6b704fe68 278 */
Kojto 108:34e6b704fe68 279 #define __HAL_CRYP_FIFO_FLUSH(__HANDLE__) ((__HANDLE__)->Instance->CR |= CRYP_CR_FFLUSH)
Kojto 108:34e6b704fe68 280
Kojto 108:34e6b704fe68 281 /**
Kojto 108:34e6b704fe68 282 * @brief Set the algorithm mode: AES-ECB, AES-CBC, AES-CTR, DES-ECB, DES-CBC.
Kojto 108:34e6b704fe68 283 * @param __HANDLE__: specifies the CRYP handle.
Kojto 108:34e6b704fe68 284 * @param MODE: The algorithm mode.
Kojto 108:34e6b704fe68 285 * @retval None
Kojto 108:34e6b704fe68 286 */
Kojto 108:34e6b704fe68 287 #define __HAL_CRYP_SET_MODE(__HANDLE__, MODE) ((__HANDLE__)->Instance->CR |= (uint32_t)(MODE))
Kojto 108:34e6b704fe68 288
Kojto 108:34e6b704fe68 289 /** @brief Check whether the specified CRYP flag is set or not.
Kojto 108:34e6b704fe68 290 * @param __HANDLE__: specifies the CRYP handle.
Kojto 108:34e6b704fe68 291 * @param __FLAG__: specifies the flag to check.
Kojto 108:34e6b704fe68 292 * This parameter can be one of the following values:
Kojto 108:34e6b704fe68 293 * @arg CRYP_FLAG_BUSY: The CRYP core is currently processing a block of data
Kojto 108:34e6b704fe68 294 * or a key preparation (for AES decryption).
Kojto 108:34e6b704fe68 295 * @arg CRYP_FLAG_IFEM: Input FIFO is empty
Kojto 108:34e6b704fe68 296 * @arg CRYP_FLAG_IFNF: Input FIFO is not full
Kojto 108:34e6b704fe68 297 * @arg CRYP_FLAG_INRIS: Input FIFO service raw interrupt is pending
Kojto 108:34e6b704fe68 298 * @arg CRYP_FLAG_OFNE: Output FIFO is not empty
Kojto 108:34e6b704fe68 299 * @arg CRYP_FLAG_OFFU: Output FIFO is full
Kojto 108:34e6b704fe68 300 * @arg CRYP_FLAG_OUTRIS: Input FIFO service raw interrupt is pending
Kojto 108:34e6b704fe68 301 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 108:34e6b704fe68 302 */
Kojto 108:34e6b704fe68 303
Kojto 108:34e6b704fe68 304 #define __HAL_CRYP_GET_FLAG(__HANDLE__, __FLAG__) ((((uint8_t)((__FLAG__) >> 24)) == 0x01)?((((__HANDLE__)->Instance->RISR) & ((__FLAG__) & CRYP_FLAG_MASK)) == ((__FLAG__) & CRYP_FLAG_MASK)): \
Kojto 108:34e6b704fe68 305 ((((__HANDLE__)->Instance->RISR) & ((__FLAG__) & CRYP_FLAG_MASK)) == ((__FLAG__) & CRYP_FLAG_MASK)))
Kojto 108:34e6b704fe68 306
Kojto 108:34e6b704fe68 307 /** @brief Check whether the specified CRYP interrupt is set or not.
Kojto 108:34e6b704fe68 308 * @param __HANDLE__: specifies the CRYP handle.
Kojto 108:34e6b704fe68 309 * @param __INTERRUPT__: specifies the interrupt to check.
Kojto 108:34e6b704fe68 310 * This parameter can be one of the following values:
Kojto 108:34e6b704fe68 311 * @arg CRYP_IT_INRIS: Input FIFO service raw interrupt is pending
Kojto 108:34e6b704fe68 312 * @arg CRYP_IT_OUTRIS: Output FIFO service raw interrupt is pending
Kojto 108:34e6b704fe68 313 * @retval The new state of __INTERRUPT__ (TRUE or FALSE).
Kojto 108:34e6b704fe68 314 */
Kojto 108:34e6b704fe68 315 #define __HAL_CRYP_GET_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->MISR & (__INTERRUPT__)) == (__INTERRUPT__))
Kojto 108:34e6b704fe68 316
Kojto 108:34e6b704fe68 317 /**
Kojto 108:34e6b704fe68 318 * @brief Enable the CRYP interrupt.
Kojto 108:34e6b704fe68 319 * @param __HANDLE__: specifies the CRYP handle.
Kojto 108:34e6b704fe68 320 * @param __INTERRUPT__: CRYP Interrupt.
Kojto 108:34e6b704fe68 321 * @retval None
Kojto 108:34e6b704fe68 322 */
Kojto 108:34e6b704fe68 323 #define __HAL_CRYP_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->IMSCR) |= (__INTERRUPT__))
Kojto 108:34e6b704fe68 324
Kojto 108:34e6b704fe68 325 /**
Kojto 108:34e6b704fe68 326 * @brief Disable the CRYP interrupt.
Kojto 108:34e6b704fe68 327 * @param __HANDLE__: specifies the CRYP handle.
Kojto 108:34e6b704fe68 328 * @param __INTERRUPT__: CRYP interrupt.
Kojto 108:34e6b704fe68 329 * @retval None
Kojto 108:34e6b704fe68 330 */
Kojto 108:34e6b704fe68 331 #define __HAL_CRYP_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->IMSCR) &= ~(__INTERRUPT__))
Kojto 108:34e6b704fe68 332
Kojto 108:34e6b704fe68 333 /**
Kojto 108:34e6b704fe68 334 * @}
Kojto 108:34e6b704fe68 335 */
Kojto 108:34e6b704fe68 336
Kojto 108:34e6b704fe68 337 /* Include CRYP HAL Extension module */
Kojto 108:34e6b704fe68 338 #include "stm32f4xx_hal_cryp_ex.h"
Kojto 108:34e6b704fe68 339
Kojto 108:34e6b704fe68 340 /* Exported functions --------------------------------------------------------*/
Kojto 108:34e6b704fe68 341 /** @defgroup CRYP_Exported_Functions CRYP Exported Functions
Kojto 108:34e6b704fe68 342 * @{
Kojto 108:34e6b704fe68 343 */
Kojto 108:34e6b704fe68 344
Kojto 108:34e6b704fe68 345 /** @addtogroup CRYP_Exported_Functions_Group1
Kojto 108:34e6b704fe68 346 * @{
Kojto 108:34e6b704fe68 347 */
Kojto 108:34e6b704fe68 348 HAL_StatusTypeDef HAL_CRYP_Init(CRYP_HandleTypeDef *hcryp);
Kojto 108:34e6b704fe68 349 HAL_StatusTypeDef HAL_CRYP_DeInit(CRYP_HandleTypeDef *hcryp);
Kojto 108:34e6b704fe68 350 void HAL_CRYP_MspInit(CRYP_HandleTypeDef *hcryp);
Kojto 108:34e6b704fe68 351 void HAL_CRYP_MspDeInit(CRYP_HandleTypeDef *hcryp);
Kojto 108:34e6b704fe68 352 /**
Kojto 108:34e6b704fe68 353 * @}
Kojto 108:34e6b704fe68 354 */
Kojto 108:34e6b704fe68 355
Kojto 108:34e6b704fe68 356 /** @addtogroup CRYP_Exported_Functions_Group2
Kojto 108:34e6b704fe68 357 * @{
Kojto 108:34e6b704fe68 358 */
Kojto 108:34e6b704fe68 359 /* AES encryption/decryption using polling ***********************************/
Kojto 108:34e6b704fe68 360 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 108:34e6b704fe68 361 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 108:34e6b704fe68 362 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 108:34e6b704fe68 363 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 108:34e6b704fe68 364 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 108:34e6b704fe68 365 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 108:34e6b704fe68 366
Kojto 108:34e6b704fe68 367 /* AES encryption/decryption using interrupt *********************************/
Kojto 108:34e6b704fe68 368 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 369 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 370 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 371 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 372 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 373 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 374
Kojto 108:34e6b704fe68 375 /* AES encryption/decryption using DMA ***************************************/
Kojto 108:34e6b704fe68 376 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 377 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 378 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 379 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 380 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 381 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 382 /**
Kojto 108:34e6b704fe68 383 * @}
Kojto 108:34e6b704fe68 384 */
Kojto 108:34e6b704fe68 385
Kojto 108:34e6b704fe68 386 /** @addtogroup CRYP_Exported_Functions_Group3
Kojto 108:34e6b704fe68 387 * @{
Kojto 108:34e6b704fe68 388 */
Kojto 108:34e6b704fe68 389 /* DES encryption/decryption using polling ***********************************/
Kojto 108:34e6b704fe68 390 HAL_StatusTypeDef HAL_CRYP_DESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 108:34e6b704fe68 391 HAL_StatusTypeDef HAL_CRYP_DESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 108:34e6b704fe68 392 HAL_StatusTypeDef HAL_CRYP_DESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 108:34e6b704fe68 393 HAL_StatusTypeDef HAL_CRYP_DESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 108:34e6b704fe68 394
Kojto 108:34e6b704fe68 395 /* DES encryption/decryption using interrupt *********************************/
Kojto 108:34e6b704fe68 396 HAL_StatusTypeDef HAL_CRYP_DESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 397 HAL_StatusTypeDef HAL_CRYP_DESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 398 HAL_StatusTypeDef HAL_CRYP_DESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 399 HAL_StatusTypeDef HAL_CRYP_DESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 400
Kojto 108:34e6b704fe68 401 /* DES encryption/decryption using DMA ***************************************/
Kojto 108:34e6b704fe68 402 HAL_StatusTypeDef HAL_CRYP_DESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 403 HAL_StatusTypeDef HAL_CRYP_DESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 404 HAL_StatusTypeDef HAL_CRYP_DESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 405 HAL_StatusTypeDef HAL_CRYP_DESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 406 /**
Kojto 108:34e6b704fe68 407 * @}
Kojto 108:34e6b704fe68 408 */
Kojto 108:34e6b704fe68 409
Kojto 108:34e6b704fe68 410 /** @addtogroup CRYP_Exported_Functions_Group4
Kojto 108:34e6b704fe68 411 * @{
Kojto 108:34e6b704fe68 412 */
Kojto 108:34e6b704fe68 413 /* TDES encryption/decryption using polling **********************************/
Kojto 108:34e6b704fe68 414 HAL_StatusTypeDef HAL_CRYP_TDESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 108:34e6b704fe68 415 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 108:34e6b704fe68 416 HAL_StatusTypeDef HAL_CRYP_TDESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 108:34e6b704fe68 417 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 108:34e6b704fe68 418
Kojto 108:34e6b704fe68 419 /* TDES encryption/decryption using interrupt ********************************/
Kojto 108:34e6b704fe68 420 HAL_StatusTypeDef HAL_CRYP_TDESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 421 HAL_StatusTypeDef HAL_CRYP_TDESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 422 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 423 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 424
Kojto 108:34e6b704fe68 425 /* TDES encryption/decryption using DMA **************************************/
Kojto 108:34e6b704fe68 426 HAL_StatusTypeDef HAL_CRYP_TDESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 427 HAL_StatusTypeDef HAL_CRYP_TDESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 428 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 108:34e6b704fe68 429 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 108:34e6b704fe68 430 /**
Kojto 108:34e6b704fe68 431 * @}
Kojto 108:34e6b704fe68 432 */
Kojto 108:34e6b704fe68 433
Kojto 108:34e6b704fe68 434 /** @addtogroup CRYP_Exported_Functions_Group5
Kojto 108:34e6b704fe68 435 * @{
Kojto 108:34e6b704fe68 436 */
Kojto 108:34e6b704fe68 437 void HAL_CRYP_InCpltCallback(CRYP_HandleTypeDef *hcryp);
Kojto 108:34e6b704fe68 438 void HAL_CRYP_OutCpltCallback(CRYP_HandleTypeDef *hcryp);
Kojto 108:34e6b704fe68 439 void HAL_CRYP_ErrorCallback(CRYP_HandleTypeDef *hcryp);
Kojto 108:34e6b704fe68 440 /**
Kojto 108:34e6b704fe68 441 * @}
Kojto 108:34e6b704fe68 442 */
Kojto 108:34e6b704fe68 443
Kojto 108:34e6b704fe68 444 /** @addtogroup CRYP_Exported_Functions_Group6
Kojto 108:34e6b704fe68 445 * @{
Kojto 108:34e6b704fe68 446 */
Kojto 108:34e6b704fe68 447 void HAL_CRYP_IRQHandler(CRYP_HandleTypeDef *hcryp);
Kojto 108:34e6b704fe68 448 /**
Kojto 108:34e6b704fe68 449 * @}
Kojto 108:34e6b704fe68 450 */
Kojto 108:34e6b704fe68 451
Kojto 108:34e6b704fe68 452 /** @addtogroup CRYP_Exported_Functions_Group7
Kojto 108:34e6b704fe68 453 * @{
Kojto 108:34e6b704fe68 454 */
Kojto 108:34e6b704fe68 455 HAL_CRYP_STATETypeDef HAL_CRYP_GetState(CRYP_HandleTypeDef *hcryp);
Kojto 108:34e6b704fe68 456 /**
Kojto 108:34e6b704fe68 457 * @}
Kojto 108:34e6b704fe68 458 */
Kojto 108:34e6b704fe68 459
Kojto 108:34e6b704fe68 460 /**
Kojto 108:34e6b704fe68 461 * @}
Kojto 108:34e6b704fe68 462 */
Kojto 108:34e6b704fe68 463
Kojto 108:34e6b704fe68 464 /* Private types -------------------------------------------------------------*/
Kojto 108:34e6b704fe68 465 /** @defgroup CRYP_Private_Types CRYP Private Types
Kojto 108:34e6b704fe68 466 * @{
Kojto 108:34e6b704fe68 467 */
Kojto 108:34e6b704fe68 468
Kojto 108:34e6b704fe68 469 /**
Kojto 108:34e6b704fe68 470 * @}
Kojto 108:34e6b704fe68 471 */
Kojto 108:34e6b704fe68 472
Kojto 108:34e6b704fe68 473 /* Private variables ---------------------------------------------------------*/
Kojto 108:34e6b704fe68 474 /** @defgroup CRYP_Private_Variables CRYP Private Variables
Kojto 108:34e6b704fe68 475 * @{
Kojto 108:34e6b704fe68 476 */
Kojto 108:34e6b704fe68 477
Kojto 108:34e6b704fe68 478 /**
Kojto 108:34e6b704fe68 479 * @}
Kojto 108:34e6b704fe68 480 */
Kojto 108:34e6b704fe68 481
Kojto 108:34e6b704fe68 482 /* Private constants ---------------------------------------------------------*/
Kojto 108:34e6b704fe68 483 /** @defgroup CRYP_Private_Constants CRYP Private Constants
Kojto 108:34e6b704fe68 484 * @{
Kojto 108:34e6b704fe68 485 */
Kojto 108:34e6b704fe68 486 #define CRYP_FLAG_MASK ((uint32_t)0x0000001F)
Kojto 108:34e6b704fe68 487 /**
Kojto 108:34e6b704fe68 488 * @}
Kojto 108:34e6b704fe68 489 */
Kojto 108:34e6b704fe68 490
Kojto 108:34e6b704fe68 491 /* Private macros ------------------------------------------------------------*/
Kojto 108:34e6b704fe68 492 /** @defgroup CRYP_Private_Macros CRYP Private Macros
Kojto 108:34e6b704fe68 493 * @{
Kojto 108:34e6b704fe68 494 */
Kojto 108:34e6b704fe68 495
Kojto 108:34e6b704fe68 496 #define IS_CRYP_KEYSIZE(__KEYSIZE__) (((__KEYSIZE__) == CRYP_KEYSIZE_128B) || \
Kojto 108:34e6b704fe68 497 ((__KEYSIZE__) == CRYP_KEYSIZE_192B) || \
Kojto 108:34e6b704fe68 498 ((__KEYSIZE__) == CRYP_KEYSIZE_256B))
Kojto 108:34e6b704fe68 499
Kojto 108:34e6b704fe68 500
Kojto 108:34e6b704fe68 501 #define IS_CRYP_DATATYPE(__DATATYPE__) (((__DATATYPE__) == CRYP_DATATYPE_32B) || \
Kojto 108:34e6b704fe68 502 ((__DATATYPE__) == CRYP_DATATYPE_16B) || \
Kojto 108:34e6b704fe68 503 ((__DATATYPE__) == CRYP_DATATYPE_8B) || \
Kojto 108:34e6b704fe68 504 ((__DATATYPE__) == CRYP_DATATYPE_1B))
Kojto 108:34e6b704fe68 505
Kojto 108:34e6b704fe68 506
Kojto 108:34e6b704fe68 507 /**
Kojto 108:34e6b704fe68 508 * @}
Kojto 108:34e6b704fe68 509 */
Kojto 108:34e6b704fe68 510
Kojto 108:34e6b704fe68 511 /* Private functions ---------------------------------------------------------*/
Kojto 108:34e6b704fe68 512 /** @defgroup CRYP_Private_Functions CRYP Private Functions
Kojto 108:34e6b704fe68 513 * @{
Kojto 108:34e6b704fe68 514 */
Kojto 108:34e6b704fe68 515
Kojto 108:34e6b704fe68 516 /**
Kojto 108:34e6b704fe68 517 * @}
Kojto 108:34e6b704fe68 518 */
Kojto 108:34e6b704fe68 519
Kojto 110:165afa46840b 520 #endif /* STM32F415xx || STM32F417xx || STM32F437xx || STM32F439xx || STM32F479xx */
Kojto 108:34e6b704fe68 521
Kojto 108:34e6b704fe68 522 /**
Kojto 108:34e6b704fe68 523 * @}
Kojto 108:34e6b704fe68 524 */
Kojto 108:34e6b704fe68 525
Kojto 108:34e6b704fe68 526 /**
Kojto 108:34e6b704fe68 527 * @}
Kojto 108:34e6b704fe68 528 */
Kojto 108:34e6b704fe68 529
Kojto 108:34e6b704fe68 530 #ifdef __cplusplus
Kojto 108:34e6b704fe68 531 }
Kojto 108:34e6b704fe68 532 #endif
Kojto 108:34e6b704fe68 533
Kojto 108:34e6b704fe68 534 #endif /* __STM32F4xx_HAL_CRYP_H */
Kojto 108:34e6b704fe68 535
Kojto 108:34e6b704fe68 536 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/