The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
<>
Date:
Thu Mar 30 13:26:47 2017 +0100
Revision:
139:856d2700e60b
Parent:
135:176b8275d35d
Child:
146:22da6e220af6
Release 139 of the mbed library

Ports for Upcoming Targets

3934: [Silicon Labs] Update to HAL and devices https://github.com/ARMmbed/mbed-os/pull/3934

Known Issues

There is an issue with LPC1768 failing the 'Semihost file system' test with this release.

Fixes and Changes

3691: [TLS / hw acceleration] AES ECB for NUCLEO_F439ZI https://github.com/ARMmbed/mbed-os/pull/3691
3869: NCS36510: Default range changed from 0 to 950mV - ADC https://github.com/ARMmbed/mbed-os/pull/3869
3893: [STM32F7] Update STM32 Cube version v1.6.0 https://github.com/ARMmbed/mbed-os/pull/3893
3917: Fix mistake register setting in serial_format() https://github.com/ARMmbed/mbed-os/pull/3917
3927: [DELTA_DFBM_NQ620] Add RC calibration setting and revise mbed_overrides.c https://github.com/ARMmbed/mbed-os/pull/3927
3918: [NUC472/M453] Support unique locally administered MAC address and other driver updates https://github.com/ARMmbed/mbed-os/pull/3918
3920: Heap size adjusted to work for both tls-client and mbed-client https://github.com/ARMmbed/mbed-os/pull/3920
3969: NUCLEO_F302R8: Add missing PB_8/PB_9 CAN pins https://github.com/ARMmbed/mbed-os/pull/3969

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 122:f9eeca106725 1 /**
Kojto 122:f9eeca106725 2 ******************************************************************************
Kojto 122:f9eeca106725 3 * @file stm32f7xx_hal_cryp.h
Kojto 122:f9eeca106725 4 * @author MCD Application Team
<> 139:856d2700e60b 5 * @version V1.2.0
<> 139:856d2700e60b 6 * @date 30-December-2016
Kojto 122:f9eeca106725 7 * @brief Header file of CRYP HAL module.
Kojto 122:f9eeca106725 8 ******************************************************************************
Kojto 122:f9eeca106725 9 * @attention
Kojto 122:f9eeca106725 10 *
Kojto 122:f9eeca106725 11 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
Kojto 122:f9eeca106725 12 *
Kojto 122:f9eeca106725 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 122:f9eeca106725 14 * are permitted provided that the following conditions are met:
Kojto 122:f9eeca106725 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 122:f9eeca106725 16 * this list of conditions and the following disclaimer.
Kojto 122:f9eeca106725 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 122:f9eeca106725 18 * this list of conditions and the following disclaimer in the documentation
Kojto 122:f9eeca106725 19 * and/or other materials provided with the distribution.
Kojto 122:f9eeca106725 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 122:f9eeca106725 21 * may be used to endorse or promote products derived from this software
Kojto 122:f9eeca106725 22 * without specific prior written permission.
Kojto 122:f9eeca106725 23 *
Kojto 122:f9eeca106725 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 122:f9eeca106725 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 122:f9eeca106725 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 122:f9eeca106725 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 122:f9eeca106725 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 122:f9eeca106725 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 122:f9eeca106725 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 122:f9eeca106725 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 122:f9eeca106725 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 122:f9eeca106725 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 122:f9eeca106725 34 *
Kojto 122:f9eeca106725 35 ******************************************************************************
Kojto 122:f9eeca106725 36 */
Kojto 122:f9eeca106725 37
Kojto 122:f9eeca106725 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 122:f9eeca106725 39 #ifndef __STM32F7xx_HAL_CRYP_H
Kojto 122:f9eeca106725 40 #define __STM32F7xx_HAL_CRYP_H
Kojto 122:f9eeca106725 41
Kojto 122:f9eeca106725 42 #ifdef __cplusplus
Kojto 122:f9eeca106725 43 extern "C" {
Kojto 122:f9eeca106725 44 #endif
Kojto 122:f9eeca106725 45
Kojto 122:f9eeca106725 46 /* Includes ------------------------------------------------------------------*/
Kojto 122:f9eeca106725 47 #include "stm32f7xx_hal_def.h"
Kojto 122:f9eeca106725 48
<> 135:176b8275d35d 49 #if defined (CRYP)
Kojto 122:f9eeca106725 50 /** @addtogroup STM32F7xx_HAL_Driver
Kojto 122:f9eeca106725 51 * @{
Kojto 122:f9eeca106725 52 */
Kojto 122:f9eeca106725 53
Kojto 122:f9eeca106725 54 /** @addtogroup CRYP
Kojto 122:f9eeca106725 55 * @{
Kojto 122:f9eeca106725 56 */
Kojto 122:f9eeca106725 57
Kojto 122:f9eeca106725 58 /* Exported types ------------------------------------------------------------*/
Kojto 122:f9eeca106725 59
Kojto 122:f9eeca106725 60 /** @defgroup CRYP_Exported_Types CRYP Exported Types
Kojto 122:f9eeca106725 61 * @{
Kojto 122:f9eeca106725 62 */
Kojto 122:f9eeca106725 63
Kojto 122:f9eeca106725 64 /** @defgroup CRYP_Exported_Types_Group1 CRYP Configuration Structure definition
Kojto 122:f9eeca106725 65 * @{
Kojto 122:f9eeca106725 66 */
Kojto 122:f9eeca106725 67
Kojto 122:f9eeca106725 68 typedef struct
Kojto 122:f9eeca106725 69 {
Kojto 122:f9eeca106725 70 uint32_t DataType; /*!< 32-bit data, 16-bit data, 8-bit data or 1-bit string.
Kojto 122:f9eeca106725 71 This parameter can be a value of @ref CRYP_Data_Type */
Kojto 122:f9eeca106725 72
Kojto 122:f9eeca106725 73 uint32_t KeySize; /*!< Used only in AES mode only : 128, 192 or 256 bit key length.
Kojto 122:f9eeca106725 74 This parameter can be a value of @ref CRYP_Key_Size */
Kojto 122:f9eeca106725 75
Kojto 122:f9eeca106725 76 uint8_t* pKey; /*!< The key used for encryption/decryption */
Kojto 122:f9eeca106725 77
Kojto 122:f9eeca106725 78 uint8_t* pInitVect; /*!< The initialization vector used also as initialization
Kojto 122:f9eeca106725 79 counter in CTR mode */
Kojto 122:f9eeca106725 80
Kojto 122:f9eeca106725 81 uint8_t IVSize; /*!< The size of initialization vector.
Kojto 122:f9eeca106725 82 This parameter (called nonce size in CCM) is used only
Kojto 122:f9eeca106725 83 in AES-128/192/256 encryption/decryption CCM mode */
Kojto 122:f9eeca106725 84
Kojto 122:f9eeca106725 85 uint8_t TagSize; /*!< The size of returned authentication TAG.
Kojto 122:f9eeca106725 86 This parameter is used only in AES-128/192/256
Kojto 122:f9eeca106725 87 encryption/decryption CCM mode */
Kojto 122:f9eeca106725 88
Kojto 122:f9eeca106725 89 uint8_t* Header; /*!< The header used in GCM and CCM modes */
Kojto 122:f9eeca106725 90
Kojto 122:f9eeca106725 91 uint32_t HeaderSize; /*!< The size of header buffer in bytes */
Kojto 122:f9eeca106725 92
Kojto 122:f9eeca106725 93 uint8_t* pScratch; /*!< Scratch buffer used to append the header. It's size must be equal to header size + 21 bytes.
Kojto 122:f9eeca106725 94 This parameter is used only in AES-128/192/256 encryption/decryption CCM mode */
Kojto 122:f9eeca106725 95 }CRYP_InitTypeDef;
Kojto 122:f9eeca106725 96
Kojto 122:f9eeca106725 97 /**
Kojto 122:f9eeca106725 98 * @}
Kojto 122:f9eeca106725 99 */
Kojto 122:f9eeca106725 100
Kojto 122:f9eeca106725 101 /** @defgroup CRYP_Exported_Types_Group2 CRYP State structures definition
Kojto 122:f9eeca106725 102 * @{
Kojto 122:f9eeca106725 103 */
Kojto 122:f9eeca106725 104
Kojto 122:f9eeca106725 105
Kojto 122:f9eeca106725 106 typedef enum
Kojto 122:f9eeca106725 107 {
Kojto 122:f9eeca106725 108 HAL_CRYP_STATE_RESET = 0x00U, /*!< CRYP not yet initialized or disabled */
Kojto 122:f9eeca106725 109 HAL_CRYP_STATE_READY = 0x01U, /*!< CRYP initialized and ready for use */
Kojto 122:f9eeca106725 110 HAL_CRYP_STATE_BUSY = 0x02U, /*!< CRYP internal processing is ongoing */
Kojto 122:f9eeca106725 111 HAL_CRYP_STATE_TIMEOUT = 0x03U, /*!< CRYP timeout state */
Kojto 122:f9eeca106725 112 HAL_CRYP_STATE_ERROR = 0x04U /*!< CRYP error state */
Kojto 122:f9eeca106725 113 }HAL_CRYP_STATETypeDef;
Kojto 122:f9eeca106725 114
Kojto 122:f9eeca106725 115 /**
Kojto 122:f9eeca106725 116 * @}
Kojto 122:f9eeca106725 117 */
Kojto 122:f9eeca106725 118
Kojto 122:f9eeca106725 119 /** @defgroup CRYP_Exported_Types_Group3 CRYP phase structures definition
Kojto 122:f9eeca106725 120 * @{
Kojto 122:f9eeca106725 121 */
Kojto 122:f9eeca106725 122
Kojto 122:f9eeca106725 123
Kojto 122:f9eeca106725 124 typedef enum
Kojto 122:f9eeca106725 125 {
Kojto 122:f9eeca106725 126 HAL_CRYP_PHASE_READY = 0x01U, /*!< CRYP peripheral is ready for initialization. */
Kojto 122:f9eeca106725 127 HAL_CRYP_PHASE_PROCESS = 0x02U, /*!< CRYP peripheral is in processing phase */
Kojto 122:f9eeca106725 128 HAL_CRYP_PHASE_FINAL = 0x03U /*!< CRYP peripheral is in final phase
Kojto 122:f9eeca106725 129 This is relevant only with CCM and GCM modes */
Kojto 122:f9eeca106725 130 }HAL_PhaseTypeDef;
Kojto 122:f9eeca106725 131
Kojto 122:f9eeca106725 132 /**
Kojto 122:f9eeca106725 133 * @}
Kojto 122:f9eeca106725 134 */
Kojto 122:f9eeca106725 135
Kojto 122:f9eeca106725 136 /** @defgroup CRYP_Exported_Types_Group4 CRYP handle Structure definition
Kojto 122:f9eeca106725 137 * @{
Kojto 122:f9eeca106725 138 */
Kojto 122:f9eeca106725 139
Kojto 122:f9eeca106725 140 typedef struct
Kojto 122:f9eeca106725 141 {
Kojto 122:f9eeca106725 142 CRYP_TypeDef *Instance; /*!< CRYP registers base address */
Kojto 122:f9eeca106725 143
Kojto 122:f9eeca106725 144 CRYP_InitTypeDef Init; /*!< CRYP required parameters */
Kojto 122:f9eeca106725 145
Kojto 122:f9eeca106725 146 uint8_t *pCrypInBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) buffer */
Kojto 122:f9eeca106725 147
Kojto 122:f9eeca106725 148 uint8_t *pCrypOutBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) buffer */
Kojto 122:f9eeca106725 149
Kojto 122:f9eeca106725 150 __IO uint16_t CrypInCount; /*!< Counter of input data */
Kojto 122:f9eeca106725 151
Kojto 122:f9eeca106725 152 __IO uint16_t CrypOutCount; /*!< Counter of output data */
Kojto 122:f9eeca106725 153
Kojto 122:f9eeca106725 154 HAL_StatusTypeDef Status; /*!< CRYP peripheral status */
Kojto 122:f9eeca106725 155
Kojto 122:f9eeca106725 156 HAL_PhaseTypeDef Phase; /*!< CRYP peripheral phase */
Kojto 122:f9eeca106725 157
Kojto 122:f9eeca106725 158 DMA_HandleTypeDef *hdmain; /*!< CRYP In DMA handle parameters */
Kojto 122:f9eeca106725 159
Kojto 122:f9eeca106725 160 DMA_HandleTypeDef *hdmaout; /*!< CRYP Out DMA handle parameters */
Kojto 122:f9eeca106725 161
Kojto 122:f9eeca106725 162 HAL_LockTypeDef Lock; /*!< CRYP locking object */
Kojto 122:f9eeca106725 163
Kojto 122:f9eeca106725 164 __IO HAL_CRYP_STATETypeDef State; /*!< CRYP peripheral state */
Kojto 122:f9eeca106725 165 }CRYP_HandleTypeDef;
Kojto 122:f9eeca106725 166
Kojto 122:f9eeca106725 167 /**
Kojto 122:f9eeca106725 168 * @}
Kojto 122:f9eeca106725 169 */
Kojto 122:f9eeca106725 170
Kojto 122:f9eeca106725 171 /**
Kojto 122:f9eeca106725 172 * @}
Kojto 122:f9eeca106725 173 */
Kojto 122:f9eeca106725 174
Kojto 122:f9eeca106725 175 /* Exported constants --------------------------------------------------------*/
Kojto 122:f9eeca106725 176 /** @defgroup CRYP_Exported_Constants CRYP Exported Constants
Kojto 122:f9eeca106725 177 * @{
Kojto 122:f9eeca106725 178 */
Kojto 122:f9eeca106725 179
Kojto 122:f9eeca106725 180 /** @defgroup CRYP_Key_Size CRYP Key Size
Kojto 122:f9eeca106725 181 * @{
Kojto 122:f9eeca106725 182 */
Kojto 122:f9eeca106725 183 #define CRYP_KEYSIZE_128B ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 184 #define CRYP_KEYSIZE_192B CRYP_CR_KEYSIZE_0
Kojto 122:f9eeca106725 185 #define CRYP_KEYSIZE_256B CRYP_CR_KEYSIZE_1
Kojto 122:f9eeca106725 186 /**
Kojto 122:f9eeca106725 187 * @}
Kojto 122:f9eeca106725 188 */
Kojto 122:f9eeca106725 189
Kojto 122:f9eeca106725 190 /** @defgroup CRYP_Data_Type CRYP Data Type
Kojto 122:f9eeca106725 191 * @{
Kojto 122:f9eeca106725 192 */
Kojto 122:f9eeca106725 193 #define CRYP_DATATYPE_32B ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 194 #define CRYP_DATATYPE_16B CRYP_CR_DATATYPE_0
Kojto 122:f9eeca106725 195 #define CRYP_DATATYPE_8B CRYP_CR_DATATYPE_1
Kojto 122:f9eeca106725 196 #define CRYP_DATATYPE_1B CRYP_CR_DATATYPE
Kojto 122:f9eeca106725 197 /**
Kojto 122:f9eeca106725 198 * @}
Kojto 122:f9eeca106725 199 */
Kojto 122:f9eeca106725 200
Kojto 122:f9eeca106725 201 /** @defgroup CRYP_Exported_Constants_Group3 CRYP CRYP_AlgoModeDirection
Kojto 122:f9eeca106725 202 * @{
Kojto 122:f9eeca106725 203 */
Kojto 122:f9eeca106725 204 #define CRYP_CR_ALGOMODE_DIRECTION ((uint32_t)0x0008003CU)
Kojto 122:f9eeca106725 205 #define CRYP_CR_ALGOMODE_TDES_ECB_ENCRYPT ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 206 #define CRYP_CR_ALGOMODE_TDES_ECB_DECRYPT ((uint32_t)0x00000004U)
Kojto 122:f9eeca106725 207 #define CRYP_CR_ALGOMODE_TDES_CBC_ENCRYPT ((uint32_t)0x00000008U)
Kojto 122:f9eeca106725 208 #define CRYP_CR_ALGOMODE_TDES_CBC_DECRYPT ((uint32_t)0x0000000CU)
Kojto 122:f9eeca106725 209 #define CRYP_CR_ALGOMODE_DES_ECB_ENCRYPT ((uint32_t)0x00000010U)
Kojto 122:f9eeca106725 210 #define CRYP_CR_ALGOMODE_DES_ECB_DECRYPT ((uint32_t)0x00000014U)
Kojto 122:f9eeca106725 211 #define CRYP_CR_ALGOMODE_DES_CBC_ENCRYPT ((uint32_t)0x00000018U)
Kojto 122:f9eeca106725 212 #define CRYP_CR_ALGOMODE_DES_CBC_DECRYPT ((uint32_t)0x0000001CU)
Kojto 122:f9eeca106725 213 #define CRYP_CR_ALGOMODE_AES_ECB_ENCRYPT ((uint32_t)0x00000020U)
Kojto 122:f9eeca106725 214 #define CRYP_CR_ALGOMODE_AES_ECB_DECRYPT ((uint32_t)0x00000024U)
Kojto 122:f9eeca106725 215 #define CRYP_CR_ALGOMODE_AES_CBC_ENCRYPT ((uint32_t)0x00000028U)
Kojto 122:f9eeca106725 216 #define CRYP_CR_ALGOMODE_AES_CBC_DECRYPT ((uint32_t)0x0000002CU)
Kojto 122:f9eeca106725 217 #define CRYP_CR_ALGOMODE_AES_CTR_ENCRYPT ((uint32_t)0x00000030U)
Kojto 122:f9eeca106725 218 #define CRYP_CR_ALGOMODE_AES_CTR_DECRYPT ((uint32_t)0x00000034U)
Kojto 122:f9eeca106725 219 /**
Kojto 122:f9eeca106725 220 * @}
Kojto 122:f9eeca106725 221 */
Kojto 122:f9eeca106725 222
Kojto 122:f9eeca106725 223 /** @defgroup CRYP_Exported_Constants_Group4 CRYP CRYP_Interrupt
Kojto 122:f9eeca106725 224 * @{
Kojto 122:f9eeca106725 225 */
Kojto 122:f9eeca106725 226 #define CRYP_IT_INI ((uint32_t)CRYP_IMSCR_INIM) /*!< Input FIFO Interrupt */
Kojto 122:f9eeca106725 227 #define CRYP_IT_OUTI ((uint32_t)CRYP_IMSCR_OUTIM) /*!< Output FIFO Interrupt */
Kojto 122:f9eeca106725 228 /**
Kojto 122:f9eeca106725 229 * @}
Kojto 122:f9eeca106725 230 */
Kojto 122:f9eeca106725 231
Kojto 122:f9eeca106725 232 /** @defgroup CRYP_Exported_Constants_Group5 CRYP CRYP_Flags
Kojto 122:f9eeca106725 233 * @{
Kojto 122:f9eeca106725 234 */
Kojto 122:f9eeca106725 235 #define CRYP_FLAG_BUSY ((uint32_t)0x00000010U) /*!< The CRYP core is currently
Kojto 122:f9eeca106725 236 processing a block of data
Kojto 122:f9eeca106725 237 or a key preparation (for
Kojto 122:f9eeca106725 238 AES decryption). */
Kojto 122:f9eeca106725 239 #define CRYP_FLAG_IFEM ((uint32_t)0x00000001U) /*!< Input FIFO is empty */
Kojto 122:f9eeca106725 240 #define CRYP_FLAG_IFNF ((uint32_t)0x00000002U) /*!< Input FIFO is not Full */
Kojto 122:f9eeca106725 241 #define CRYP_FLAG_OFNE ((uint32_t)0x00000004U) /*!< Output FIFO is not empty */
Kojto 122:f9eeca106725 242 #define CRYP_FLAG_OFFU ((uint32_t)0x00000008U) /*!< Output FIFO is Full */
Kojto 122:f9eeca106725 243 #define CRYP_FLAG_OUTRIS ((uint32_t)0x01000002U) /*!< Output FIFO service raw
Kojto 122:f9eeca106725 244 interrupt status */
Kojto 122:f9eeca106725 245 #define CRYP_FLAG_INRIS ((uint32_t)0x01000001U) /*!< Input FIFO service raw
Kojto 122:f9eeca106725 246 interrupt status */
Kojto 122:f9eeca106725 247 /**
Kojto 122:f9eeca106725 248 * @}
Kojto 122:f9eeca106725 249 */
Kojto 122:f9eeca106725 250
Kojto 122:f9eeca106725 251 /**
Kojto 122:f9eeca106725 252 * @}
Kojto 122:f9eeca106725 253 */
Kojto 122:f9eeca106725 254
Kojto 122:f9eeca106725 255 /* Exported macro ------------------------------------------------------------*/
Kojto 122:f9eeca106725 256 /** @defgroup CRYP_Exported_Macros CRYP Exported Macros
Kojto 122:f9eeca106725 257 * @{
Kojto 122:f9eeca106725 258 */
Kojto 122:f9eeca106725 259
Kojto 122:f9eeca106725 260 /** @brief Reset CRYP handle state
Kojto 122:f9eeca106725 261 * @param __HANDLE__: specifies the CRYP handle.
Kojto 122:f9eeca106725 262 * @retval None
Kojto 122:f9eeca106725 263 */
Kojto 122:f9eeca106725 264 #define __HAL_CRYP_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_CRYP_STATE_RESET)
Kojto 122:f9eeca106725 265
Kojto 122:f9eeca106725 266 /**
Kojto 122:f9eeca106725 267 * @brief Enable/Disable the CRYP peripheral.
Kojto 122:f9eeca106725 268 * @param __HANDLE__: specifies the CRYP handle.
Kojto 122:f9eeca106725 269 * @retval None
Kojto 122:f9eeca106725 270 */
Kojto 122:f9eeca106725 271 #define __HAL_CRYP_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= CRYP_CR_CRYPEN)
Kojto 122:f9eeca106725 272 #define __HAL_CRYP_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~CRYP_CR_CRYPEN)
Kojto 122:f9eeca106725 273
Kojto 122:f9eeca106725 274 /**
Kojto 122:f9eeca106725 275 * @brief Flush the data FIFO.
Kojto 122:f9eeca106725 276 * @param __HANDLE__: specifies the CRYP handle.
Kojto 122:f9eeca106725 277 * @retval None
Kojto 122:f9eeca106725 278 */
Kojto 122:f9eeca106725 279 #define __HAL_CRYP_FIFO_FLUSH(__HANDLE__) ((__HANDLE__)->Instance->CR |= CRYP_CR_FFLUSH)
Kojto 122:f9eeca106725 280
Kojto 122:f9eeca106725 281 /**
Kojto 122:f9eeca106725 282 * @brief Set the algorithm mode: AES-ECB, AES-CBC, AES-CTR, DES-ECB, DES-CBC.
Kojto 122:f9eeca106725 283 * @param __HANDLE__: specifies the CRYP handle.
Kojto 122:f9eeca106725 284 * @param MODE: The algorithm mode.
Kojto 122:f9eeca106725 285 * @retval None
Kojto 122:f9eeca106725 286 */
Kojto 122:f9eeca106725 287 #define __HAL_CRYP_SET_MODE(__HANDLE__, MODE) ((__HANDLE__)->Instance->CR |= (uint32_t)(MODE))
Kojto 122:f9eeca106725 288
Kojto 122:f9eeca106725 289 /** @brief Check whether the specified CRYP flag is set or not.
Kojto 122:f9eeca106725 290 * @param __HANDLE__: specifies the CRYP handle.
Kojto 122:f9eeca106725 291 * @param __FLAG__: specifies the flag to check.
Kojto 122:f9eeca106725 292 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 293 * @arg CRYP_FLAG_BUSY: The CRYP core is currently processing a block of data
Kojto 122:f9eeca106725 294 * or a key preparation (for AES decryption).
Kojto 122:f9eeca106725 295 * @arg CRYP_FLAG_IFEM: Input FIFO is empty
Kojto 122:f9eeca106725 296 * @arg CRYP_FLAG_IFNF: Input FIFO is not full
Kojto 122:f9eeca106725 297 * @arg CRYP_FLAG_INRIS: Input FIFO service raw interrupt is pending
Kojto 122:f9eeca106725 298 * @arg CRYP_FLAG_OFNE: Output FIFO is not empty
Kojto 122:f9eeca106725 299 * @arg CRYP_FLAG_OFFU: Output FIFO is full
Kojto 122:f9eeca106725 300 * @arg CRYP_FLAG_OUTRIS: Input FIFO service raw interrupt is pending
Kojto 122:f9eeca106725 301 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 122:f9eeca106725 302 */
Kojto 122:f9eeca106725 303
Kojto 122:f9eeca106725 304 #define __HAL_CRYP_GET_FLAG(__HANDLE__, __FLAG__) ((((uint8_t)((__FLAG__) >> 24)) == 0x01U)?((((__HANDLE__)->Instance->RISR) & ((__FLAG__) & CRYP_FLAG_MASK)) == ((__FLAG__) & CRYP_FLAG_MASK)): \
Kojto 122:f9eeca106725 305 ((((__HANDLE__)->Instance->RISR) & ((__FLAG__) & CRYP_FLAG_MASK)) == ((__FLAG__) & CRYP_FLAG_MASK)))
Kojto 122:f9eeca106725 306
Kojto 122:f9eeca106725 307 /** @brief Check whether the specified CRYP interrupt is set or not.
Kojto 122:f9eeca106725 308 * @param __HANDLE__: specifies the CRYP handle.
Kojto 122:f9eeca106725 309 * @param __INTERRUPT__: specifies the interrupt to check.
Kojto 122:f9eeca106725 310 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 311 * @arg CRYP_IT_INRIS: Input FIFO service raw interrupt is pending
Kojto 122:f9eeca106725 312 * @arg CRYP_IT_OUTRIS: Output FIFO service raw interrupt is pending
Kojto 122:f9eeca106725 313 * @retval The new state of __INTERRUPT__ (TRUE or FALSE).
Kojto 122:f9eeca106725 314 */
Kojto 122:f9eeca106725 315 #define __HAL_CRYP_GET_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->MISR & (__INTERRUPT__)) == (__INTERRUPT__))
Kojto 122:f9eeca106725 316
Kojto 122:f9eeca106725 317 /**
Kojto 122:f9eeca106725 318 * @brief Enable the CRYP interrupt.
Kojto 122:f9eeca106725 319 * @param __HANDLE__: specifies the CRYP handle.
Kojto 122:f9eeca106725 320 * @param __INTERRUPT__: CRYP Interrupt.
Kojto 122:f9eeca106725 321 * @retval None
Kojto 122:f9eeca106725 322 */
Kojto 122:f9eeca106725 323 #define __HAL_CRYP_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->IMSCR) |= (__INTERRUPT__))
Kojto 122:f9eeca106725 324
Kojto 122:f9eeca106725 325 /**
Kojto 122:f9eeca106725 326 * @brief Disable the CRYP interrupt.
Kojto 122:f9eeca106725 327 * @param __HANDLE__: specifies the CRYP handle.
Kojto 122:f9eeca106725 328 * @param __INTERRUPT__: CRYP interrupt.
Kojto 122:f9eeca106725 329 * @retval None
Kojto 122:f9eeca106725 330 */
Kojto 122:f9eeca106725 331 #define __HAL_CRYP_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->IMSCR) &= ~(__INTERRUPT__))
Kojto 122:f9eeca106725 332
Kojto 122:f9eeca106725 333 /**
Kojto 122:f9eeca106725 334 * @}
Kojto 122:f9eeca106725 335 */
Kojto 122:f9eeca106725 336
Kojto 122:f9eeca106725 337 /* Include CRYP HAL Extension module */
Kojto 122:f9eeca106725 338 #include "stm32f7xx_hal_cryp_ex.h"
Kojto 122:f9eeca106725 339
Kojto 122:f9eeca106725 340 /* Exported functions --------------------------------------------------------*/
Kojto 122:f9eeca106725 341 /** @defgroup CRYP_Exported_Functions CRYP Exported Functions
Kojto 122:f9eeca106725 342 * @{
Kojto 122:f9eeca106725 343 */
Kojto 122:f9eeca106725 344
Kojto 122:f9eeca106725 345 /** @addtogroup CRYP_Exported_Functions_Group1
Kojto 122:f9eeca106725 346 * @{
Kojto 122:f9eeca106725 347 */
Kojto 122:f9eeca106725 348 HAL_StatusTypeDef HAL_CRYP_Init(CRYP_HandleTypeDef *hcryp);
Kojto 122:f9eeca106725 349 HAL_StatusTypeDef HAL_CRYP_DeInit(CRYP_HandleTypeDef *hcryp);
Kojto 122:f9eeca106725 350 void HAL_CRYP_MspInit(CRYP_HandleTypeDef *hcryp);
Kojto 122:f9eeca106725 351 void HAL_CRYP_MspDeInit(CRYP_HandleTypeDef *hcryp);
Kojto 122:f9eeca106725 352 /**
Kojto 122:f9eeca106725 353 * @}
Kojto 122:f9eeca106725 354 */
Kojto 122:f9eeca106725 355
Kojto 122:f9eeca106725 356 /** @addtogroup CRYP_Exported_Functions_Group2
Kojto 122:f9eeca106725 357 * @{
Kojto 122:f9eeca106725 358 */
Kojto 122:f9eeca106725 359 /* AES encryption/decryption using polling ***********************************/
Kojto 122:f9eeca106725 360 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 122:f9eeca106725 361 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 122:f9eeca106725 362 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 122:f9eeca106725 363 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 122:f9eeca106725 364 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 122:f9eeca106725 365 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 122:f9eeca106725 366
Kojto 122:f9eeca106725 367 /* AES encryption/decryption using interrupt *********************************/
Kojto 122:f9eeca106725 368 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 369 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 370 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 371 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 372 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 373 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 374
Kojto 122:f9eeca106725 375 /* AES encryption/decryption using DMA ***************************************/
Kojto 122:f9eeca106725 376 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 377 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 378 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 379 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 380 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 381 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 382 /**
Kojto 122:f9eeca106725 383 * @}
Kojto 122:f9eeca106725 384 */
Kojto 122:f9eeca106725 385
Kojto 122:f9eeca106725 386 /** @addtogroup CRYP_Exported_Functions_Group3
Kojto 122:f9eeca106725 387 * @{
Kojto 122:f9eeca106725 388 */
Kojto 122:f9eeca106725 389 /* DES encryption/decryption using polling ***********************************/
Kojto 122:f9eeca106725 390 HAL_StatusTypeDef HAL_CRYP_DESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 122:f9eeca106725 391 HAL_StatusTypeDef HAL_CRYP_DESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 122:f9eeca106725 392 HAL_StatusTypeDef HAL_CRYP_DESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 122:f9eeca106725 393 HAL_StatusTypeDef HAL_CRYP_DESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 122:f9eeca106725 394
Kojto 122:f9eeca106725 395 /* DES encryption/decryption using interrupt *********************************/
Kojto 122:f9eeca106725 396 HAL_StatusTypeDef HAL_CRYP_DESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 397 HAL_StatusTypeDef HAL_CRYP_DESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 398 HAL_StatusTypeDef HAL_CRYP_DESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 399 HAL_StatusTypeDef HAL_CRYP_DESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 400
Kojto 122:f9eeca106725 401 /* DES encryption/decryption using DMA ***************************************/
Kojto 122:f9eeca106725 402 HAL_StatusTypeDef HAL_CRYP_DESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 403 HAL_StatusTypeDef HAL_CRYP_DESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 404 HAL_StatusTypeDef HAL_CRYP_DESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 405 HAL_StatusTypeDef HAL_CRYP_DESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 406 /**
Kojto 122:f9eeca106725 407 * @}
Kojto 122:f9eeca106725 408 */
Kojto 122:f9eeca106725 409
Kojto 122:f9eeca106725 410 /** @addtogroup CRYP_Exported_Functions_Group4
Kojto 122:f9eeca106725 411 * @{
Kojto 122:f9eeca106725 412 */
Kojto 122:f9eeca106725 413 /* TDES encryption/decryption using polling **********************************/
Kojto 122:f9eeca106725 414 HAL_StatusTypeDef HAL_CRYP_TDESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 122:f9eeca106725 415 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
Kojto 122:f9eeca106725 416 HAL_StatusTypeDef HAL_CRYP_TDESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 122:f9eeca106725 417 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
Kojto 122:f9eeca106725 418
Kojto 122:f9eeca106725 419 /* TDES encryption/decryption using interrupt ********************************/
Kojto 122:f9eeca106725 420 HAL_StatusTypeDef HAL_CRYP_TDESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 421 HAL_StatusTypeDef HAL_CRYP_TDESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 422 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 423 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 424
Kojto 122:f9eeca106725 425 /* TDES encryption/decryption using DMA **************************************/
Kojto 122:f9eeca106725 426 HAL_StatusTypeDef HAL_CRYP_TDESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 427 HAL_StatusTypeDef HAL_CRYP_TDESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 428 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
Kojto 122:f9eeca106725 429 HAL_StatusTypeDef HAL_CRYP_TDESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
Kojto 122:f9eeca106725 430 /**
Kojto 122:f9eeca106725 431 * @}
Kojto 122:f9eeca106725 432 */
Kojto 122:f9eeca106725 433
Kojto 122:f9eeca106725 434 /** @addtogroup CRYP_Exported_Functions_Group5
Kojto 122:f9eeca106725 435 * @{
Kojto 122:f9eeca106725 436 */
Kojto 122:f9eeca106725 437 void HAL_CRYP_InCpltCallback(CRYP_HandleTypeDef *hcryp);
Kojto 122:f9eeca106725 438 void HAL_CRYP_OutCpltCallback(CRYP_HandleTypeDef *hcryp);
Kojto 122:f9eeca106725 439 void HAL_CRYP_ErrorCallback(CRYP_HandleTypeDef *hcryp);
Kojto 122:f9eeca106725 440 /**
Kojto 122:f9eeca106725 441 * @}
Kojto 122:f9eeca106725 442 */
Kojto 122:f9eeca106725 443
Kojto 122:f9eeca106725 444 /** @addtogroup CRYP_Exported_Functions_Group6
Kojto 122:f9eeca106725 445 * @{
Kojto 122:f9eeca106725 446 */
Kojto 122:f9eeca106725 447 void HAL_CRYP_IRQHandler(CRYP_HandleTypeDef *hcryp);
Kojto 122:f9eeca106725 448 /**
Kojto 122:f9eeca106725 449 * @}
Kojto 122:f9eeca106725 450 */
Kojto 122:f9eeca106725 451
Kojto 122:f9eeca106725 452 /** @addtogroup CRYP_Exported_Functions_Group7
Kojto 122:f9eeca106725 453 * @{
Kojto 122:f9eeca106725 454 */
Kojto 122:f9eeca106725 455 HAL_CRYP_STATETypeDef HAL_CRYP_GetState(CRYP_HandleTypeDef *hcryp);
Kojto 122:f9eeca106725 456 /**
Kojto 122:f9eeca106725 457 * @}
Kojto 122:f9eeca106725 458 */
Kojto 122:f9eeca106725 459
Kojto 122:f9eeca106725 460 /**
Kojto 122:f9eeca106725 461 * @}
Kojto 122:f9eeca106725 462 */
Kojto 122:f9eeca106725 463
Kojto 122:f9eeca106725 464 /* Private types -------------------------------------------------------------*/
Kojto 122:f9eeca106725 465 /** @defgroup CRYP_Private_Types CRYP Private Types
Kojto 122:f9eeca106725 466 * @{
Kojto 122:f9eeca106725 467 */
Kojto 122:f9eeca106725 468
Kojto 122:f9eeca106725 469 /**
Kojto 122:f9eeca106725 470 * @}
Kojto 122:f9eeca106725 471 */
Kojto 122:f9eeca106725 472
Kojto 122:f9eeca106725 473 /* Private variables ---------------------------------------------------------*/
Kojto 122:f9eeca106725 474 /** @defgroup CRYP_Private_Variables CRYP Private Variables
Kojto 122:f9eeca106725 475 * @{
Kojto 122:f9eeca106725 476 */
Kojto 122:f9eeca106725 477
Kojto 122:f9eeca106725 478 /**
Kojto 122:f9eeca106725 479 * @}
Kojto 122:f9eeca106725 480 */
Kojto 122:f9eeca106725 481
Kojto 122:f9eeca106725 482 /* Private constants ---------------------------------------------------------*/
Kojto 122:f9eeca106725 483 /** @defgroup CRYP_Private_Constants CRYP Private Constants
Kojto 122:f9eeca106725 484 * @{
Kojto 122:f9eeca106725 485 */
Kojto 122:f9eeca106725 486 #define CRYP_FLAG_MASK ((uint32_t)0x0000001F)
Kojto 122:f9eeca106725 487 /**
Kojto 122:f9eeca106725 488 * @}
Kojto 122:f9eeca106725 489 */
Kojto 122:f9eeca106725 490
Kojto 122:f9eeca106725 491 /* Private macros ------------------------------------------------------------*/
Kojto 122:f9eeca106725 492 /** @defgroup CRYP_Private_Macros CRYP Private Macros
Kojto 122:f9eeca106725 493 * @{
Kojto 122:f9eeca106725 494 */
Kojto 122:f9eeca106725 495
Kojto 122:f9eeca106725 496 #define IS_CRYP_KEYSIZE(__KEYSIZE__) (((__KEYSIZE__) == CRYP_KEYSIZE_128B) || \
Kojto 122:f9eeca106725 497 ((__KEYSIZE__) == CRYP_KEYSIZE_192B) || \
Kojto 122:f9eeca106725 498 ((__KEYSIZE__) == CRYP_KEYSIZE_256B))
Kojto 122:f9eeca106725 499
Kojto 122:f9eeca106725 500
Kojto 122:f9eeca106725 501 #define IS_CRYP_DATATYPE(__DATATYPE__) (((__DATATYPE__) == CRYP_DATATYPE_32B) || \
Kojto 122:f9eeca106725 502 ((__DATATYPE__) == CRYP_DATATYPE_16B) || \
Kojto 122:f9eeca106725 503 ((__DATATYPE__) == CRYP_DATATYPE_8B) || \
Kojto 122:f9eeca106725 504 ((__DATATYPE__) == CRYP_DATATYPE_1B))
Kojto 122:f9eeca106725 505
Kojto 122:f9eeca106725 506
Kojto 122:f9eeca106725 507 /**
Kojto 122:f9eeca106725 508 * @}
Kojto 122:f9eeca106725 509 */
Kojto 122:f9eeca106725 510
Kojto 122:f9eeca106725 511 /* Private functions ---------------------------------------------------------*/
Kojto 122:f9eeca106725 512 /** @defgroup CRYP_Private_Functions CRYP Private Functions
Kojto 122:f9eeca106725 513 * @{
Kojto 122:f9eeca106725 514 */
Kojto 122:f9eeca106725 515
Kojto 122:f9eeca106725 516 /**
Kojto 122:f9eeca106725 517 * @}
Kojto 122:f9eeca106725 518 */
Kojto 122:f9eeca106725 519
Kojto 122:f9eeca106725 520 /**
Kojto 122:f9eeca106725 521 * @}
Kojto 122:f9eeca106725 522 */
Kojto 122:f9eeca106725 523
<> 135:176b8275d35d 524 #endif /* CRYP */
Kojto 122:f9eeca106725 525
Kojto 122:f9eeca106725 526 /**
Kojto 122:f9eeca106725 527 * @}
Kojto 122:f9eeca106725 528 */
Kojto 122:f9eeca106725 529
<> 139:856d2700e60b 530 #if defined (AES)
<> 139:856d2700e60b 531
<> 139:856d2700e60b 532 /** @addtogroup STM32F7xx_HAL_Driver
<> 139:856d2700e60b 533 * @{
<> 139:856d2700e60b 534 */
<> 139:856d2700e60b 535
<> 139:856d2700e60b 536 /** @addtogroup CRYP
<> 139:856d2700e60b 537 * @{
<> 139:856d2700e60b 538 */
<> 139:856d2700e60b 539
<> 139:856d2700e60b 540 /* Exported types ------------------------------------------------------------*/
<> 139:856d2700e60b 541 /** @defgroup CRYP_Exported_Types CRYP Exported Types
<> 139:856d2700e60b 542 * @{
<> 139:856d2700e60b 543 */
<> 139:856d2700e60b 544
<> 139:856d2700e60b 545 /**
<> 139:856d2700e60b 546 * @brief CRYP Configuration Structure definition
<> 139:856d2700e60b 547 */
<> 139:856d2700e60b 548 typedef struct
<> 139:856d2700e60b 549 {
<> 139:856d2700e60b 550 uint32_t DataType; /*!< 32-bit data, 16-bit data, 8-bit data or 1-bit string.
<> 139:856d2700e60b 551 This parameter can be a value of @ref CRYP_Data_Type */
<> 139:856d2700e60b 552
<> 139:856d2700e60b 553 uint32_t KeySize; /*!< 128 or 256-bit key length.
<> 139:856d2700e60b 554 This parameter can be a value of @ref CRYP_Key_Size */
<> 139:856d2700e60b 555
<> 139:856d2700e60b 556 uint32_t OperatingMode; /*!< AES operating mode.
<> 139:856d2700e60b 557 This parameter can be a value of @ref CRYP_AES_OperatingMode */
<> 139:856d2700e60b 558
<> 139:856d2700e60b 559 uint32_t ChainingMode; /*!< AES chaining mode.
<> 139:856d2700e60b 560 This parameter can be a value of @ref CRYP_AES_ChainingMode */
<> 139:856d2700e60b 561
<> 139:856d2700e60b 562 uint32_t KeyWriteFlag; /*!< Allows to bypass or not key write-up before decryption.
<> 139:856d2700e60b 563 This parameter can be a value of @ref CRYP_Key_Write */
<> 139:856d2700e60b 564
<> 139:856d2700e60b 565 uint32_t GCMCMACPhase; /*!< Indicates the processing phase of the Galois Counter Mode (GCM),
<> 139:856d2700e60b 566 Galois Message Authentication Code (GMAC) or Cipher Message
<> 139:856d2700e60b 567 Authentication Code (CMAC) or Counter with Cipher Mode (CCM) when
<> 139:856d2700e60b 568 the latter is applicable.
<> 139:856d2700e60b 569 This parameter can be a value of @ref CRYP_GCM_CMAC_Phase */
<> 139:856d2700e60b 570
<> 139:856d2700e60b 571 uint8_t* pKey; /*!< Encryption/Decryption Key */
<> 139:856d2700e60b 572
<> 139:856d2700e60b 573 uint8_t* pInitVect; /*!< Initialization Vector used for CTR, CBC, GCM/GMAC, CMAC,
<> 139:856d2700e60b 574 (and CCM when applicable) modes */
<> 139:856d2700e60b 575
<> 139:856d2700e60b 576 uint8_t* Header; /*!< Header used in GCM/GMAC, CMAC (and CCM when applicable) modes */
<> 139:856d2700e60b 577
<> 139:856d2700e60b 578 uint64_t HeaderSize; /*!< Header size in bytes */
<> 139:856d2700e60b 579
<> 139:856d2700e60b 580 }CRYP_InitTypeDef;
<> 139:856d2700e60b 581
<> 139:856d2700e60b 582 /**
<> 139:856d2700e60b 583 * @brief HAL CRYP State structures definition
<> 139:856d2700e60b 584 */
<> 139:856d2700e60b 585 typedef enum
<> 139:856d2700e60b 586 {
<> 139:856d2700e60b 587 HAL_CRYP_STATE_RESET = 0x00, /*!< CRYP not yet initialized or disabled */
<> 139:856d2700e60b 588 HAL_CRYP_STATE_READY = 0x01, /*!< CRYP initialized and ready for use */
<> 139:856d2700e60b 589 HAL_CRYP_STATE_BUSY = 0x02, /*!< CRYP internal processing is ongoing */
<> 139:856d2700e60b 590 HAL_CRYP_STATE_TIMEOUT = 0x03, /*!< CRYP timeout state */
<> 139:856d2700e60b 591 HAL_CRYP_STATE_ERROR = 0x04, /*!< CRYP error state */
<> 139:856d2700e60b 592 HAL_CRYP_STATE_SUSPENDED = 0x05 /*!< CRYP suspended */
<> 139:856d2700e60b 593 }HAL_CRYP_STATETypeDef;
<> 139:856d2700e60b 594
<> 139:856d2700e60b 595 /**
<> 139:856d2700e60b 596 * @brief HAL CRYP phase structures definition
<> 139:856d2700e60b 597 */
<> 139:856d2700e60b 598 typedef enum
<> 139:856d2700e60b 599 {
<> 139:856d2700e60b 600 HAL_CRYP_PHASE_READY = 0x01, /*!< CRYP peripheral is ready for initialization. */
<> 139:856d2700e60b 601 HAL_CRYP_PHASE_PROCESS = 0x02, /*!< CRYP peripheral is in processing phase */
<> 139:856d2700e60b 602 HAL_CRYP_PHASE_START = 0x03, /*!< CRYP peripheral has been initialized but
<> 139:856d2700e60b 603 GCM/GMAC/CMAC(/CCM) initialization phase has not started */
<> 139:856d2700e60b 604 HAL_CRYP_PHASE_INIT_OVER = 0x04, /*!< GCM/GMAC/CMAC(/CCM) init phase has been carried out */
<> 139:856d2700e60b 605 HAL_CRYP_PHASE_HEADER_OVER = 0x05, /*!< GCM/GMAC/CMAC(/CCM) header phase has been carried out */
<> 139:856d2700e60b 606 HAL_CRYP_PHASE_PAYLOAD_OVER = 0x06, /*!< GCM(/CCM) payload phase has been carried out */
<> 139:856d2700e60b 607 HAL_CRYP_PHASE_FINAL_OVER = 0x07, /*!< GCM/GMAC/CMAC(/CCM) final phase has been carried out */
<> 139:856d2700e60b 608 HAL_CRYP_PHASE_HEADER_SUSPENDED = 0x08, /*!< GCM/GMAC/CMAC(/CCM) header phase has been suspended */
<> 139:856d2700e60b 609 HAL_CRYP_PHASE_PAYLOAD_SUSPENDED = 0x09, /*!< GCM(/CCM) payload phase has been suspended */
<> 139:856d2700e60b 610 HAL_CRYP_PHASE_NOT_USED = 0x0a /*!< Phase is irrelevant to the current chaining mode */
<> 139:856d2700e60b 611 }HAL_PhaseTypeDef;
<> 139:856d2700e60b 612
<> 139:856d2700e60b 613 /**
<> 139:856d2700e60b 614 * @brief HAL CRYP mode suspend definitions
<> 139:856d2700e60b 615 */
<> 139:856d2700e60b 616 typedef enum
<> 139:856d2700e60b 617 {
<> 139:856d2700e60b 618 HAL_CRYP_SUSPEND_NONE = 0x00, /*!< CRYP peripheral suspension not requested */
<> 139:856d2700e60b 619 HAL_CRYP_SUSPEND = 0x01 /*!< CRYP peripheral suspension requested */
<> 139:856d2700e60b 620 }HAL_SuspendTypeDef;
<> 139:856d2700e60b 621
<> 139:856d2700e60b 622
<> 139:856d2700e60b 623 /**
<> 139:856d2700e60b 624 * @brief HAL CRYP Error Codes definition
<> 139:856d2700e60b 625 */
<> 139:856d2700e60b 626 #define HAL_CRYP_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
<> 139:856d2700e60b 627 #define HAL_CRYP_WRITE_ERROR ((uint32_t)0x00000001) /*!< Write error */
<> 139:856d2700e60b 628 #define HAL_CRYP_READ_ERROR ((uint32_t)0x00000002) /*!< Read error */
<> 139:856d2700e60b 629 #define HAL_CRYP_DMA_ERROR ((uint32_t)0x00000004) /*!< DMA error */
<> 139:856d2700e60b 630 #define HAL_CRYP_BUSY_ERROR ((uint32_t)0x00000008) /*!< Busy flag error */
<> 139:856d2700e60b 631
<> 139:856d2700e60b 632 /**
<> 139:856d2700e60b 633 * @brief CRYP handle Structure definition
<> 139:856d2700e60b 634 */
<> 139:856d2700e60b 635 typedef struct
<> 139:856d2700e60b 636 {
<> 139:856d2700e60b 637 AES_TypeDef *Instance; /*!< Register base address */
<> 139:856d2700e60b 638
<> 139:856d2700e60b 639 CRYP_InitTypeDef Init; /*!< CRYP initialization parameters */
<> 139:856d2700e60b 640
<> 139:856d2700e60b 641 uint8_t *pCrypInBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) input buffer */
<> 139:856d2700e60b 642
<> 139:856d2700e60b 643 uint8_t *pCrypOutBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) output buffer */
<> 139:856d2700e60b 644
<> 139:856d2700e60b 645 uint32_t CrypInCount; /*!< Input data size in bytes or, after suspension, the remaining
<> 139:856d2700e60b 646 number of bytes to process */
<> 139:856d2700e60b 647
<> 139:856d2700e60b 648 uint32_t CrypOutCount; /*!< Output data size in bytes */
<> 139:856d2700e60b 649
<> 139:856d2700e60b 650 HAL_PhaseTypeDef Phase; /*!< CRYP peripheral processing phase for GCM, GMAC, CMAC
<> 139:856d2700e60b 651 (or CCM when applicable) modes.
<> 139:856d2700e60b 652 Indicates the last phase carried out to ease
<> 139:856d2700e60b 653 phase transitions */
<> 139:856d2700e60b 654
<> 139:856d2700e60b 655 DMA_HandleTypeDef *hdmain; /*!< CRYP peripheral Input DMA handle parameters */
<> 139:856d2700e60b 656
<> 139:856d2700e60b 657 DMA_HandleTypeDef *hdmaout; /*!< CRYP peripheral Output DMA handle parameters */
<> 139:856d2700e60b 658
<> 139:856d2700e60b 659 HAL_LockTypeDef Lock; /*!< CRYP locking object */
<> 139:856d2700e60b 660
<> 139:856d2700e60b 661 __IO HAL_CRYP_STATETypeDef State; /*!< CRYP peripheral state */
<> 139:856d2700e60b 662
<> 139:856d2700e60b 663 __IO uint32_t ErrorCode; /*!< CRYP peripheral error code */
<> 139:856d2700e60b 664
<> 139:856d2700e60b 665 HAL_SuspendTypeDef SuspendRequest; /*!< CRYP peripheral suspension request flag */
<> 139:856d2700e60b 666 }CRYP_HandleTypeDef;
<> 139:856d2700e60b 667
<> 139:856d2700e60b 668 /**
<> 139:856d2700e60b 669 * @}
<> 139:856d2700e60b 670 */
<> 139:856d2700e60b 671
<> 139:856d2700e60b 672
<> 139:856d2700e60b 673 /* Exported constants --------------------------------------------------------*/
<> 139:856d2700e60b 674 /** @defgroup CRYP_Exported_Constants CRYP Exported Constants
<> 139:856d2700e60b 675 * @{
<> 139:856d2700e60b 676 */
<> 139:856d2700e60b 677
<> 139:856d2700e60b 678 /** @defgroup CRYP_Key_Size Key size selection
<> 139:856d2700e60b 679 * @{
<> 139:856d2700e60b 680 */
<> 139:856d2700e60b 681 #define CRYP_KEYSIZE_128B ((uint32_t)0x00000000) /*!< 128-bit long key */
<> 139:856d2700e60b 682 #define CRYP_KEYSIZE_256B AES_CR_KEYSIZE /*!< 256-bit long key */
<> 139:856d2700e60b 683 /**
<> 139:856d2700e60b 684 * @}
<> 139:856d2700e60b 685 */
<> 139:856d2700e60b 686
<> 139:856d2700e60b 687 /** @defgroup CRYP_Data_Type AES Data Type selection
<> 139:856d2700e60b 688 * @{
<> 139:856d2700e60b 689 */
<> 139:856d2700e60b 690 #define CRYP_DATATYPE_32B ((uint32_t)0x00000000) /*!< 32-bit data type (no swapping) */
<> 139:856d2700e60b 691 #define CRYP_DATATYPE_16B AES_CR_DATATYPE_0 /*!< 16-bit data type (half-word swapping) */
<> 139:856d2700e60b 692 #define CRYP_DATATYPE_8B AES_CR_DATATYPE_1 /*!< 8-bit data type (byte swapping) */
<> 139:856d2700e60b 693 #define CRYP_DATATYPE_1B AES_CR_DATATYPE /*!< 1-bit data type (bit swapping) */
<> 139:856d2700e60b 694 /**
<> 139:856d2700e60b 695 * @}
<> 139:856d2700e60b 696 */
<> 139:856d2700e60b 697
<> 139:856d2700e60b 698 /** @defgroup CRYP_AES_State AES Enable state
<> 139:856d2700e60b 699 * @{
<> 139:856d2700e60b 700 */
<> 139:856d2700e60b 701 #define CRYP_AES_DISABLE ((uint32_t)0x00000000) /*!< Disable AES */
<> 139:856d2700e60b 702 #define CRYP_AES_ENABLE AES_CR_EN /*!< Enable AES */
<> 139:856d2700e60b 703 /**
<> 139:856d2700e60b 704 * @}
<> 139:856d2700e60b 705 */
<> 139:856d2700e60b 706
<> 139:856d2700e60b 707 /** @defgroup CRYP_AES_OperatingMode AES operating mode
<> 139:856d2700e60b 708 * @{
<> 139:856d2700e60b 709 */
<> 139:856d2700e60b 710 #define CRYP_ALGOMODE_ENCRYPT ((uint32_t)0x00000000) /*!< Encryption mode */
<> 139:856d2700e60b 711 #define CRYP_ALGOMODE_KEYDERIVATION AES_CR_MODE_0 /*!< Key derivation mode */
<> 139:856d2700e60b 712 #define CRYP_ALGOMODE_DECRYPT AES_CR_MODE_1 /*!< Decryption */
<> 139:856d2700e60b 713 #define CRYP_ALGOMODE_KEYDERIVATION_DECRYPT AES_CR_MODE /*!< Key derivation and decryption */
<> 139:856d2700e60b 714 #define CRYP_ALGOMODE_TAG_GENERATION ((uint32_t)0x00000000) /*!< GMAC or CMAC authentication tag generation */
<> 139:856d2700e60b 715 /**
<> 139:856d2700e60b 716 * @}
<> 139:856d2700e60b 717 */
<> 139:856d2700e60b 718
<> 139:856d2700e60b 719 /** @defgroup CRYP_AES_ChainingMode AES chaining mode
<> 139:856d2700e60b 720 * @{
<> 139:856d2700e60b 721 */
<> 139:856d2700e60b 722 #define CRYP_CHAINMODE_AES_ECB ((uint32_t)0x00000000) /*!< Electronic codebook chaining algorithm */
<> 139:856d2700e60b 723 #define CRYP_CHAINMODE_AES_CBC AES_CR_CHMOD_0 /*!< Cipher block chaining algorithm */
<> 139:856d2700e60b 724 #define CRYP_CHAINMODE_AES_CTR AES_CR_CHMOD_1 /*!< Counter mode chaining algorithm */
<> 139:856d2700e60b 725 #define CRYP_CHAINMODE_AES_GCM_GMAC (AES_CR_CHMOD_0 | AES_CR_CHMOD_1) /*!< Galois counter mode - Galois message authentication code */
<> 139:856d2700e60b 726 #define CRYP_CHAINMODE_AES_CMAC AES_CR_CHMOD_2 /*!< Cipher message authentication code */
<> 139:856d2700e60b 727 #if defined(AES_CR_NPBLB)
<> 139:856d2700e60b 728 #define CRYP_CHAINMODE_AES_CCM_CMAC AES_CR_CHMOD_2 /*!< Counter with Cipher Mode - Cipher message authentication code */
<> 139:856d2700e60b 729 #endif
<> 139:856d2700e60b 730 /**
<> 139:856d2700e60b 731 * @}
<> 139:856d2700e60b 732 */
<> 139:856d2700e60b 733
<> 139:856d2700e60b 734 /** @defgroup CRYP_Key_Write AES decryption key write-up flag
<> 139:856d2700e60b 735 * @{
<> 139:856d2700e60b 736 */
<> 139:856d2700e60b 737 #define CRYP_KEY_WRITE_ENABLE ((uint32_t)0x00000000) /*!< Enable decryption key writing */
<> 139:856d2700e60b 738 #define CRYP_KEY_WRITE_DISABLE ((uint32_t)0x00000001) /*!< Disable decryption key writing */
<> 139:856d2700e60b 739 /**
<> 139:856d2700e60b 740 * @}
<> 139:856d2700e60b 741 */
<> 139:856d2700e60b 742
<> 139:856d2700e60b 743 /** @defgroup CRYP_DMAIN DMA Input phase management enable state
<> 139:856d2700e60b 744 * @{
<> 139:856d2700e60b 745 */
<> 139:856d2700e60b 746 #define CRYP_DMAIN_DISABLE ((uint32_t)0x00000000) /*!< Disable DMA Input phase management */
<> 139:856d2700e60b 747 #define CRYP_DMAIN_ENABLE AES_CR_DMAINEN /*!< Enable DMA Input phase management */
<> 139:856d2700e60b 748 /**
<> 139:856d2700e60b 749 * @}
<> 139:856d2700e60b 750 */
<> 139:856d2700e60b 751
<> 139:856d2700e60b 752 /** @defgroup CRYP_DMAOUT DMA Output phase management enable state
<> 139:856d2700e60b 753 * @{
<> 139:856d2700e60b 754 */
<> 139:856d2700e60b 755 #define CRYP_DMAOUT_DISABLE ((uint32_t)0x00000000) /*!< Disable DMA Output phase management */
<> 139:856d2700e60b 756 #define CRYP_DMAOUT_ENABLE AES_CR_DMAOUTEN /*!< Enable DMA Output phase management */
<> 139:856d2700e60b 757 /**
<> 139:856d2700e60b 758 * @}
<> 139:856d2700e60b 759 */
<> 139:856d2700e60b 760
<> 139:856d2700e60b 761
<> 139:856d2700e60b 762 /** @defgroup CRYP_GCM_CMAC_Phase GCM/GMAC and CMAC processing phase selection
<> 139:856d2700e60b 763 * @{
<> 139:856d2700e60b 764 */
<> 139:856d2700e60b 765 #define CRYP_GCM_INIT_PHASE ((uint32_t)0x00000000) /*!< GCM/GMAC (or CCM) init phase */
<> 139:856d2700e60b 766 #define CRYP_GCMCMAC_HEADER_PHASE AES_CR_GCMPH_0 /*!< GCM/GMAC or (CCM/)CMAC header phase */
<> 139:856d2700e60b 767 #define CRYP_GCM_PAYLOAD_PHASE AES_CR_GCMPH_1 /*!< GCM(/CCM) payload phase */
<> 139:856d2700e60b 768 #define CRYP_GCMCMAC_FINAL_PHASE AES_CR_GCMPH /*!< GCM/GMAC or (CCM/)CMAC final phase */
<> 139:856d2700e60b 769 /* Definitions duplication for code readibility's sake:
<> 139:856d2700e60b 770 supported or not supported chain modes are not specified for each phase */
<> 139:856d2700e60b 771 #define CRYP_INIT_PHASE ((uint32_t)0x00000000) /*!< Init phase */
<> 139:856d2700e60b 772 #define CRYP_HEADER_PHASE AES_CR_GCMPH_0 /*!< Header phase */
<> 139:856d2700e60b 773 #define CRYP_PAYLOAD_PHASE AES_CR_GCMPH_1 /*!< Payload phase */
<> 139:856d2700e60b 774 #define CRYP_FINAL_PHASE AES_CR_GCMPH /*!< Final phase */
<> 139:856d2700e60b 775 /**
<> 139:856d2700e60b 776 * @}
<> 139:856d2700e60b 777 */
<> 139:856d2700e60b 778
<> 139:856d2700e60b 779 /** @defgroup CRYP_Flags AES status flags
<> 139:856d2700e60b 780 * @{
<> 139:856d2700e60b 781 */
<> 139:856d2700e60b 782
<> 139:856d2700e60b 783 #define CRYP_FLAG_BUSY AES_SR_BUSY /*!< GCM process suspension forbidden */
<> 139:856d2700e60b 784 #define CRYP_FLAG_WRERR AES_SR_WRERR /*!< Write Error */
<> 139:856d2700e60b 785 #define CRYP_FLAG_RDERR AES_SR_RDERR /*!< Read error */
<> 139:856d2700e60b 786 #define CRYP_FLAG_CCF AES_SR_CCF /*!< Computation completed */
<> 139:856d2700e60b 787 /**
<> 139:856d2700e60b 788 * @}
<> 139:856d2700e60b 789 */
<> 139:856d2700e60b 790
<> 139:856d2700e60b 791 /** @defgroup CRYP_Clear_Flags AES clearing flags
<> 139:856d2700e60b 792 * @{
<> 139:856d2700e60b 793 */
<> 139:856d2700e60b 794
<> 139:856d2700e60b 795 #define CRYP_CCF_CLEAR AES_CR_CCFC /*!< Computation Complete Flag Clear */
<> 139:856d2700e60b 796 #define CRYP_ERR_CLEAR AES_CR_ERRC /*!< Error Flag Clear */
<> 139:856d2700e60b 797 /**
<> 139:856d2700e60b 798 * @}
<> 139:856d2700e60b 799 */
<> 139:856d2700e60b 800
<> 139:856d2700e60b 801 /** @defgroup AES_Interrupts_Enable AES Interrupts Enable bits
<> 139:856d2700e60b 802 * @{
<> 139:856d2700e60b 803 */
<> 139:856d2700e60b 804 #define CRYP_IT_CCFIE AES_CR_CCFIE /*!< Computation Complete interrupt enable */
<> 139:856d2700e60b 805 #define CRYP_IT_ERRIE AES_CR_ERRIE /*!< Error interrupt enable */
<> 139:856d2700e60b 806 /**
<> 139:856d2700e60b 807 * @}
<> 139:856d2700e60b 808 */
<> 139:856d2700e60b 809
<> 139:856d2700e60b 810 /** @defgroup CRYP_Interrupts_Flags AES Interrupts flags
<> 139:856d2700e60b 811 * @{
<> 139:856d2700e60b 812 */
<> 139:856d2700e60b 813 #define CRYP_IT_WRERR AES_SR_WRERR /*!< Write Error */
<> 139:856d2700e60b 814 #define CRYP_IT_RDERR AES_SR_RDERR /*!< Read Error */
<> 139:856d2700e60b 815 #define CRYP_IT_CCF AES_SR_CCF /*!< Computation completed */
<> 139:856d2700e60b 816 /**
<> 139:856d2700e60b 817 * @}
<> 139:856d2700e60b 818 */
<> 139:856d2700e60b 819
<> 139:856d2700e60b 820 /**
<> 139:856d2700e60b 821 * @}
<> 139:856d2700e60b 822 */
<> 139:856d2700e60b 823
<> 139:856d2700e60b 824 /* Exported macros -----------------------------------------------------------*/
<> 139:856d2700e60b 825 /** @defgroup CRYP_Exported_Macros CRYP Exported Macros
<> 139:856d2700e60b 826 * @{
<> 139:856d2700e60b 827 */
<> 139:856d2700e60b 828
<> 139:856d2700e60b 829 /** @brief Reset CRYP handle state.
<> 139:856d2700e60b 830 * @param __HANDLE__: specifies the CRYP handle.
<> 139:856d2700e60b 831 * @retval None
<> 139:856d2700e60b 832 */
<> 139:856d2700e60b 833 #define __HAL_CRYP_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_CRYP_STATE_RESET)
<> 139:856d2700e60b 834
<> 139:856d2700e60b 835 /**
<> 139:856d2700e60b 836 * @brief Enable the CRYP AES peripheral.
<> 139:856d2700e60b 837 * @retval None
<> 139:856d2700e60b 838 */
<> 139:856d2700e60b 839 #define __HAL_CRYP_ENABLE() (AES->CR |= AES_CR_EN)
<> 139:856d2700e60b 840
<> 139:856d2700e60b 841 /**
<> 139:856d2700e60b 842 * @brief Disable the CRYP AES peripheral.
<> 139:856d2700e60b 843 * @retval None
<> 139:856d2700e60b 844 */
<> 139:856d2700e60b 845 #define __HAL_CRYP_DISABLE() (AES->CR &= ~AES_CR_EN)
<> 139:856d2700e60b 846
<> 139:856d2700e60b 847 /**
<> 139:856d2700e60b 848 * @brief Set the algorithm operating mode.
<> 139:856d2700e60b 849 * @param __OPERATING_MODE__: specifies the operating mode
<> 139:856d2700e60b 850 * This parameter can be one of the following values:
<> 139:856d2700e60b 851 * @arg @ref CRYP_ALGOMODE_ENCRYPT encryption
<> 139:856d2700e60b 852 * @arg @ref CRYP_ALGOMODE_KEYDERIVATION key derivation
<> 139:856d2700e60b 853 * @arg @ref CRYP_ALGOMODE_DECRYPT decryption
<> 139:856d2700e60b 854 * @arg @ref CRYP_ALGOMODE_KEYDERIVATION_DECRYPT key derivation and decryption
<> 139:856d2700e60b 855 * @retval None
<> 139:856d2700e60b 856 */
<> 139:856d2700e60b 857 #define __HAL_CRYP_SET_OPERATINGMODE(__OPERATING_MODE__) MODIFY_REG(AES->CR, AES_CR_MODE, (__OPERATING_MODE__))
<> 139:856d2700e60b 858
<> 139:856d2700e60b 859
<> 139:856d2700e60b 860 /**
<> 139:856d2700e60b 861 * @brief Set the algorithm chaining mode.
<> 139:856d2700e60b 862 * @param __CHAINING_MODE__: specifies the chaining mode
<> 139:856d2700e60b 863 * This parameter can be one of the following values:
<> 139:856d2700e60b 864 * @arg @ref CRYP_CHAINMODE_AES_ECB Electronic CodeBook
<> 139:856d2700e60b 865 * @arg @ref CRYP_CHAINMODE_AES_CBC Cipher Block Chaining
<> 139:856d2700e60b 866 * @arg @ref CRYP_CHAINMODE_AES_CTR CounTeR mode
<> 139:856d2700e60b 867 * @arg @ref CRYP_CHAINMODE_AES_GCM_GMAC Galois Counter Mode or Galois Message Authentication Code
<> 139:856d2700e60b 868 * @arg @ref CRYP_CHAINMODE_AES_CMAC Cipher Message Authentication Code (or Counter with Cipher Mode when applicable)
<> 139:856d2700e60b 869 * @retval None
<> 139:856d2700e60b 870 */
<> 139:856d2700e60b 871 #define __HAL_CRYP_SET_CHAININGMODE(__CHAINING_MODE__) MODIFY_REG(AES->CR, AES_CR_CHMOD, (__CHAINING_MODE__))
<> 139:856d2700e60b 872
<> 139:856d2700e60b 873
<> 139:856d2700e60b 874
<> 139:856d2700e60b 875 /** @brief Check whether the specified CRYP status flag is set or not.
<> 139:856d2700e60b 876 * @param __FLAG__: specifies the flag to check.
<> 139:856d2700e60b 877 * This parameter can be one of the following values:
<> 139:856d2700e60b 878 * @arg @ref CRYP_FLAG_BUSY GCM process suspension forbidden
<> 139:856d2700e60b 879 * @arg @ref CRYP_IT_WRERR Write Error
<> 139:856d2700e60b 880 * @arg @ref CRYP_IT_RDERR Read Error
<> 139:856d2700e60b 881 * @arg @ref CRYP_IT_CCF Computation Complete
<> 139:856d2700e60b 882 * @retval The state of __FLAG__ (TRUE or FALSE).
<> 139:856d2700e60b 883 */
<> 139:856d2700e60b 884 #define __HAL_CRYP_GET_FLAG(__FLAG__) ((AES->SR & (__FLAG__)) == (__FLAG__))
<> 139:856d2700e60b 885
<> 139:856d2700e60b 886
<> 139:856d2700e60b 887 /** @brief Clear the CRYP pending status flag.
<> 139:856d2700e60b 888 * @param __FLAG__: specifies the flag to clear.
<> 139:856d2700e60b 889 * This parameter can be one of the following values:
<> 139:856d2700e60b 890 * @arg @ref CRYP_ERR_CLEAR Read (RDERR) or Write Error (WRERR) Flag Clear
<> 139:856d2700e60b 891 * @arg @ref CRYP_CCF_CLEAR Computation Complete Flag (CCF) Clear
<> 139:856d2700e60b 892 * @retval None
<> 139:856d2700e60b 893 */
<> 139:856d2700e60b 894 #define __HAL_CRYP_CLEAR_FLAG(__FLAG__) SET_BIT(AES->CR, (__FLAG__))
<> 139:856d2700e60b 895
<> 139:856d2700e60b 896
<> 139:856d2700e60b 897
<> 139:856d2700e60b 898 /** @brief Check whether the specified CRYP interrupt source is enabled or not.
<> 139:856d2700e60b 899 * @param __INTERRUPT__: CRYP interrupt source to check
<> 139:856d2700e60b 900 * This parameter can be one of the following values:
<> 139:856d2700e60b 901 * @arg @ref CRYP_IT_ERRIE Error interrupt (used for RDERR and WRERR)
<> 139:856d2700e60b 902 * @arg @ref CRYP_IT_CCFIE Computation Complete interrupt
<> 139:856d2700e60b 903 * @retval State of interruption (TRUE or FALSE).
<> 139:856d2700e60b 904 */
<> 139:856d2700e60b 905 #define __HAL_CRYP_GET_IT_SOURCE(__INTERRUPT__) ((AES->CR & (__INTERRUPT__)) == (__INTERRUPT__))
<> 139:856d2700e60b 906
<> 139:856d2700e60b 907
<> 139:856d2700e60b 908 /** @brief Check whether the specified CRYP interrupt is set or not.
<> 139:856d2700e60b 909 * @param __INTERRUPT__: specifies the interrupt to check.
<> 139:856d2700e60b 910 * This parameter can be one of the following values:
<> 139:856d2700e60b 911 * @arg @ref CRYP_IT_WRERR Write Error
<> 139:856d2700e60b 912 * @arg @ref CRYP_IT_RDERR Read Error
<> 139:856d2700e60b 913 * @arg @ref CRYP_IT_CCF Computation Complete
<> 139:856d2700e60b 914 * @retval The state of __INTERRUPT__ (TRUE or FALSE).
<> 139:856d2700e60b 915 */
<> 139:856d2700e60b 916 #define __HAL_CRYP_GET_IT(__INTERRUPT__) ((AES->SR & (__INTERRUPT__)) == (__INTERRUPT__))
<> 139:856d2700e60b 917
<> 139:856d2700e60b 918
<> 139:856d2700e60b 919
<> 139:856d2700e60b 920 /** @brief Clear the CRYP pending interrupt.
<> 139:856d2700e60b 921 * @param __INTERRUPT__: specifies the IT to clear.
<> 139:856d2700e60b 922 * This parameter can be one of the following values:
<> 139:856d2700e60b 923 * @arg @ref CRYP_ERR_CLEAR Read (RDERR) or Write Error (WRERR) Flag Clear
<> 139:856d2700e60b 924 * @arg @ref CRYP_CCF_CLEAR Computation Complete Flag (CCF) Clear
<> 139:856d2700e60b 925 * @retval None
<> 139:856d2700e60b 926 */
<> 139:856d2700e60b 927 #define __HAL_CRYP_CLEAR_IT(__INTERRUPT__) SET_BIT(AES->CR, (__INTERRUPT__))
<> 139:856d2700e60b 928
<> 139:856d2700e60b 929
<> 139:856d2700e60b 930 /**
<> 139:856d2700e60b 931 * @brief Enable the CRYP interrupt.
<> 139:856d2700e60b 932 * @param __INTERRUPT__: CRYP Interrupt.
<> 139:856d2700e60b 933 * This parameter can be one of the following values:
<> 139:856d2700e60b 934 * @arg @ref CRYP_IT_ERRIE Error interrupt (used for RDERR and WRERR)
<> 139:856d2700e60b 935 * @arg @ref CRYP_IT_CCFIE Computation Complete interrupt
<> 139:856d2700e60b 936 * @retval None
<> 139:856d2700e60b 937 */
<> 139:856d2700e60b 938 #define __HAL_CRYP_ENABLE_IT(__INTERRUPT__) ((AES->CR) |= (__INTERRUPT__))
<> 139:856d2700e60b 939
<> 139:856d2700e60b 940
<> 139:856d2700e60b 941 /**
<> 139:856d2700e60b 942 * @brief Disable the CRYP interrupt.
<> 139:856d2700e60b 943 * @param __INTERRUPT__: CRYP Interrupt.
<> 139:856d2700e60b 944 * This parameter can be one of the following values:
<> 139:856d2700e60b 945 * @arg @ref CRYP_IT_ERRIE Error interrupt (used for RDERR and WRERR)
<> 139:856d2700e60b 946 * @arg @ref CRYP_IT_CCFIE Computation Complete interrupt
<> 139:856d2700e60b 947 * @retval None
<> 139:856d2700e60b 948 */
<> 139:856d2700e60b 949 #define __HAL_CRYP_DISABLE_IT(__INTERRUPT__) ((AES->CR) &= ~(__INTERRUPT__))
<> 139:856d2700e60b 950
<> 139:856d2700e60b 951 /**
<> 139:856d2700e60b 952 * @}
<> 139:856d2700e60b 953 */
<> 139:856d2700e60b 954
<> 139:856d2700e60b 955 /* Private macros --------------------------------------------------------*/
<> 139:856d2700e60b 956 /** @addtogroup CRYP_Private_Macros CRYP Private Macros
<> 139:856d2700e60b 957 * @{
<> 139:856d2700e60b 958 */
<> 139:856d2700e60b 959
<> 139:856d2700e60b 960 /**
<> 139:856d2700e60b 961 * @brief Verify the key size length.
<> 139:856d2700e60b 962 * @param __KEYSIZE__: Ciphering/deciphering algorithm key size.
<> 139:856d2700e60b 963 * @retval SET (__KEYSIZE__ is a valid value) or RESET (__KEYSIZE__ is invalid)
<> 139:856d2700e60b 964 */
<> 139:856d2700e60b 965 #define IS_CRYP_KEYSIZE(__KEYSIZE__) (((__KEYSIZE__) == CRYP_KEYSIZE_128B) || \
<> 139:856d2700e60b 966 ((__KEYSIZE__) == CRYP_KEYSIZE_256B))
<> 139:856d2700e60b 967
<> 139:856d2700e60b 968 /**
<> 139:856d2700e60b 969 * @brief Verify the input data type.
<> 139:856d2700e60b 970 * @param __DATATYPE__: Ciphering/deciphering algorithm input data type.
<> 139:856d2700e60b 971 * @retval SET (__DATATYPE__ is valid) or RESET (__DATATYPE__ is invalid)
<> 139:856d2700e60b 972 */
<> 139:856d2700e60b 973 #define IS_CRYP_DATATYPE(__DATATYPE__) (((__DATATYPE__) == CRYP_DATATYPE_32B) || \
<> 139:856d2700e60b 974 ((__DATATYPE__) == CRYP_DATATYPE_16B) || \
<> 139:856d2700e60b 975 ((__DATATYPE__) == CRYP_DATATYPE_8B) || \
<> 139:856d2700e60b 976 ((__DATATYPE__) == CRYP_DATATYPE_1B))
<> 139:856d2700e60b 977
<> 139:856d2700e60b 978 /**
<> 139:856d2700e60b 979 * @brief Verify the CRYP AES IP running mode.
<> 139:856d2700e60b 980 * @param __MODE__: CRYP AES IP running mode.
<> 139:856d2700e60b 981 * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid)
<> 139:856d2700e60b 982 */
<> 139:856d2700e60b 983 #define IS_CRYP_AES(__MODE__) (((__MODE__) == CRYP_AES_DISABLE) || \
<> 139:856d2700e60b 984 ((__MODE__) == CRYP_AES_ENABLE))
<> 139:856d2700e60b 985
<> 139:856d2700e60b 986 /**
<> 139:856d2700e60b 987 * @brief Verify the selected CRYP algorithm.
<> 139:856d2700e60b 988 * @param __ALGOMODE__: Selected CRYP algorithm (ciphering, deciphering, key derivation or a combination of the latter).
<> 139:856d2700e60b 989 * @retval SET (__ALGOMODE__ is valid) or RESET (__ALGOMODE__ is invalid)
<> 139:856d2700e60b 990 */
<> 139:856d2700e60b 991 #define IS_CRYP_ALGOMODE(__ALGOMODE__) (((__ALGOMODE__) == CRYP_ALGOMODE_ENCRYPT) || \
<> 139:856d2700e60b 992 ((__ALGOMODE__) == CRYP_ALGOMODE_KEYDERIVATION) || \
<> 139:856d2700e60b 993 ((__ALGOMODE__) == CRYP_ALGOMODE_DECRYPT) || \
<> 139:856d2700e60b 994 ((__ALGOMODE__) == CRYP_ALGOMODE_TAG_GENERATION) || \
<> 139:856d2700e60b 995 ((__ALGOMODE__) == CRYP_ALGOMODE_KEYDERIVATION_DECRYPT))
<> 139:856d2700e60b 996
<> 139:856d2700e60b 997 /**
<> 139:856d2700e60b 998 * @brief Verify the selected CRYP chaining algorithm.
<> 139:856d2700e60b 999 * @param __CHAINMODE__: Selected CRYP chaining algorithm.
<> 139:856d2700e60b 1000 * @retval SET (__CHAINMODE__ is valid) or RESET (__CHAINMODE__ is invalid)
<> 139:856d2700e60b 1001 */
<> 139:856d2700e60b 1002 #if defined(AES_CR_NPBLB)
<> 139:856d2700e60b 1003 #define IS_CRYP_CHAINMODE(__CHAINMODE__) (((__CHAINMODE__) == CRYP_CHAINMODE_AES_ECB) || \
<> 139:856d2700e60b 1004 ((__CHAINMODE__) == CRYP_CHAINMODE_AES_CBC) || \
<> 139:856d2700e60b 1005 ((__CHAINMODE__) == CRYP_CHAINMODE_AES_CTR) || \
<> 139:856d2700e60b 1006 ((__CHAINMODE__) == CRYP_CHAINMODE_AES_GCM_GMAC) || \
<> 139:856d2700e60b 1007 ((__CHAINMODE__) == CRYP_CHAINMODE_AES_CCM_CMAC))
<> 139:856d2700e60b 1008 #else
<> 139:856d2700e60b 1009 #define IS_CRYP_CHAINMODE(__CHAINMODE__) (((__CHAINMODE__) == CRYP_CHAINMODE_AES_ECB) || \
<> 139:856d2700e60b 1010 ((__CHAINMODE__) == CRYP_CHAINMODE_AES_CBC) || \
<> 139:856d2700e60b 1011 ((__CHAINMODE__) == CRYP_CHAINMODE_AES_CTR) || \
<> 139:856d2700e60b 1012 ((__CHAINMODE__) == CRYP_CHAINMODE_AES_GCM_GMAC) || \
<> 139:856d2700e60b 1013 ((__CHAINMODE__) == CRYP_CHAINMODE_AES_CMAC))
<> 139:856d2700e60b 1014 #endif
<> 139:856d2700e60b 1015
<> 139:856d2700e60b 1016 /**
<> 139:856d2700e60b 1017 * @brief Verify the deciphering key write option.
<> 139:856d2700e60b 1018 * @param __WRITE__: deciphering key write option.
<> 139:856d2700e60b 1019 * @retval SET (__WRITE__ is valid) or RESET (__WRITE__ is invalid)
<> 139:856d2700e60b 1020 */
<> 139:856d2700e60b 1021 #define IS_CRYP_WRITE(__WRITE__) (((__WRITE__) == CRYP_KEY_WRITE_ENABLE) || \
<> 139:856d2700e60b 1022 ((__WRITE__) == CRYP_KEY_WRITE_DISABLE))
<> 139:856d2700e60b 1023
<> 139:856d2700e60b 1024 /**
<> 139:856d2700e60b 1025 * @brief Verify the CRYP input data DMA mode.
<> 139:856d2700e60b 1026 * @param __MODE__: CRYP input data DMA mode.
<> 139:856d2700e60b 1027 * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid)
<> 139:856d2700e60b 1028 */
<> 139:856d2700e60b 1029 #define IS_CRYP_DMAIN(__MODE__) (((__MODE__) == CRYP_DMAIN_DISABLE) || \
<> 139:856d2700e60b 1030 ((__MODE__) == CRYP_DMAIN_ENABLE))
<> 139:856d2700e60b 1031
<> 139:856d2700e60b 1032 /**
<> 139:856d2700e60b 1033 * @brief Verify the CRYP output data DMA mode.
<> 139:856d2700e60b 1034 * @param __MODE__: CRYP output data DMA mode.
<> 139:856d2700e60b 1035 * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid)
<> 139:856d2700e60b 1036 */
<> 139:856d2700e60b 1037 #define IS_CRYP_DMAOUT(__MODE__) (((__MODE__) == CRYP_DMAOUT_DISABLE) || \
<> 139:856d2700e60b 1038 ((__MODE__) == CRYP_DMAOUT_ENABLE))
<> 139:856d2700e60b 1039
<> 139:856d2700e60b 1040 /**
<> 139:856d2700e60b 1041 * @brief Verify the CRYP AES ciphering/deciphering/authentication algorithm phase.
<> 139:856d2700e60b 1042 * @param __PHASE__: CRYP AES ciphering/deciphering/authentication algorithm phase.
<> 139:856d2700e60b 1043 * @retval SET (__PHASE__ is valid) or RESET (__PHASE__ is invalid)
<> 139:856d2700e60b 1044 */
<> 139:856d2700e60b 1045 #define IS_CRYP_GCMCMAC_PHASE(__PHASE__) (((__PHASE__) == CRYP_GCM_INIT_PHASE) || \
<> 139:856d2700e60b 1046 ((__PHASE__) == CRYP_GCMCMAC_HEADER_PHASE) || \
<> 139:856d2700e60b 1047 ((__PHASE__) == CRYP_GCM_PAYLOAD_PHASE) || \
<> 139:856d2700e60b 1048 ((__PHASE__) == CRYP_GCMCMAC_FINAL_PHASE))
<> 139:856d2700e60b 1049
<> 139:856d2700e60b 1050 /**
<> 139:856d2700e60b 1051 * @}
<> 139:856d2700e60b 1052 */
<> 139:856d2700e60b 1053
<> 139:856d2700e60b 1054 /* Include CRYP HAL Extended module */
<> 139:856d2700e60b 1055 #include "stm32f7xx_hal_cryp_ex.h"
<> 139:856d2700e60b 1056
<> 139:856d2700e60b 1057 /* Exported functions --------------------------------------------------------*/
<> 139:856d2700e60b 1058 /** @addtogroup CRYP_Exported_Functions CRYP Exported Functions
<> 139:856d2700e60b 1059 * @{
<> 139:856d2700e60b 1060 */
<> 139:856d2700e60b 1061
<> 139:856d2700e60b 1062 /** @addtogroup CRYP_Exported_Functions_Group1 Initialization and deinitialization functions
<> 139:856d2700e60b 1063 * @{
<> 139:856d2700e60b 1064 */
<> 139:856d2700e60b 1065
<> 139:856d2700e60b 1066 /* Initialization/de-initialization functions ********************************/
<> 139:856d2700e60b 1067 HAL_StatusTypeDef HAL_CRYP_Init(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1068 HAL_StatusTypeDef HAL_CRYP_DeInit(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1069
<> 139:856d2700e60b 1070 /* MSP initialization/de-initialization functions ****************************/
<> 139:856d2700e60b 1071 void HAL_CRYP_MspInit(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1072 void HAL_CRYP_MspDeInit(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1073
<> 139:856d2700e60b 1074 /**
<> 139:856d2700e60b 1075 * @}
<> 139:856d2700e60b 1076 */
<> 139:856d2700e60b 1077
<> 139:856d2700e60b 1078 /** @addtogroup CRYP_Exported_Functions_Group2 AES processing functions
<> 139:856d2700e60b 1079 * @{
<> 139:856d2700e60b 1080 */
<> 139:856d2700e60b 1081
<> 139:856d2700e60b 1082 /* AES encryption/decryption processing functions ****************************/
<> 139:856d2700e60b 1083
<> 139:856d2700e60b 1084 /* AES encryption/decryption using polling ***********************************/
<> 139:856d2700e60b 1085 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
<> 139:856d2700e60b 1086 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
<> 139:856d2700e60b 1087 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
<> 139:856d2700e60b 1088 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
<> 139:856d2700e60b 1089 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout);
<> 139:856d2700e60b 1090 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout);
<> 139:856d2700e60b 1091
<> 139:856d2700e60b 1092 /* AES encryption/decryption using interrupt *********************************/
<> 139:856d2700e60b 1093 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
<> 139:856d2700e60b 1094 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
<> 139:856d2700e60b 1095 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
<> 139:856d2700e60b 1096 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
<> 139:856d2700e60b 1097 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
<> 139:856d2700e60b 1098 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
<> 139:856d2700e60b 1099
<> 139:856d2700e60b 1100 /* AES encryption/decryption using DMA ***************************************/
<> 139:856d2700e60b 1101 HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
<> 139:856d2700e60b 1102 HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
<> 139:856d2700e60b 1103 HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
<> 139:856d2700e60b 1104 HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
<> 139:856d2700e60b 1105 HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData);
<> 139:856d2700e60b 1106 HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData);
<> 139:856d2700e60b 1107
<> 139:856d2700e60b 1108 /**
<> 139:856d2700e60b 1109 * @}
<> 139:856d2700e60b 1110 */
<> 139:856d2700e60b 1111
<> 139:856d2700e60b 1112 /** @addtogroup CRYP_Exported_Functions_Group3 Callback functions
<> 139:856d2700e60b 1113 * @{
<> 139:856d2700e60b 1114 */
<> 139:856d2700e60b 1115 /* CallBack functions ********************************************************/
<> 139:856d2700e60b 1116 void HAL_CRYP_InCpltCallback(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1117 void HAL_CRYP_OutCpltCallback(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1118 void HAL_CRYP_ErrorCallback(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1119
<> 139:856d2700e60b 1120 /**
<> 139:856d2700e60b 1121 * @}
<> 139:856d2700e60b 1122 */
<> 139:856d2700e60b 1123
<> 139:856d2700e60b 1124 /** @addtogroup CRYP_Exported_Functions_Group4 CRYP IRQ handler
<> 139:856d2700e60b 1125 * @{
<> 139:856d2700e60b 1126 */
<> 139:856d2700e60b 1127
<> 139:856d2700e60b 1128 /* AES interrupt handling function *******************************************/
<> 139:856d2700e60b 1129 void HAL_CRYP_IRQHandler(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1130
<> 139:856d2700e60b 1131 /**
<> 139:856d2700e60b 1132 * @}
<> 139:856d2700e60b 1133 */
<> 139:856d2700e60b 1134
<> 139:856d2700e60b 1135 /** @addtogroup CRYP_Exported_Functions_Group5 Peripheral State functions
<> 139:856d2700e60b 1136 * @{
<> 139:856d2700e60b 1137 */
<> 139:856d2700e60b 1138
<> 139:856d2700e60b 1139 /* Peripheral State functions ************************************************/
<> 139:856d2700e60b 1140 HAL_CRYP_STATETypeDef HAL_CRYP_GetState(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1141 uint32_t HAL_CRYP_GetError(CRYP_HandleTypeDef *hcryp);
<> 139:856d2700e60b 1142
<> 139:856d2700e60b 1143 /**
<> 139:856d2700e60b 1144 * @}
<> 139:856d2700e60b 1145 */
<> 139:856d2700e60b 1146
<> 139:856d2700e60b 1147 /**
<> 139:856d2700e60b 1148 * @}
<> 139:856d2700e60b 1149 */
<> 139:856d2700e60b 1150
<> 139:856d2700e60b 1151 /**
<> 139:856d2700e60b 1152 * @}
<> 139:856d2700e60b 1153 */
<> 139:856d2700e60b 1154
<> 139:856d2700e60b 1155 /**
<> 139:856d2700e60b 1156 * @}
<> 139:856d2700e60b 1157 */
<> 139:856d2700e60b 1158
<> 139:856d2700e60b 1159 #endif /* AES */
<> 139:856d2700e60b 1160
<> 139:856d2700e60b 1161
Kojto 122:f9eeca106725 1162 #ifdef __cplusplus
Kojto 122:f9eeca106725 1163 }
Kojto 122:f9eeca106725 1164 #endif
Kojto 122:f9eeca106725 1165
Kojto 122:f9eeca106725 1166 #endif /* __STM32F7xx_HAL_CRYP_H */
Kojto 122:f9eeca106725 1167
Kojto 122:f9eeca106725 1168 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/