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:
Kojto
Date:
Tue Feb 14 11:24:20 2017 +0000
Revision:
136:ef9c61f8c49f
Parent:
135:176b8275d35d
Child:
139:856d2700e60b
Release 136 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3432: Target STM USBHOST support https://github.com/ARMmbed/mbed-os/pull/3432
3181: NUCLEO_F207ZG extending PeripheralPins.c: all available alternate functions can be used now https://github.com/ARMmbed/mbed-os/pull/3181
3626: NUCLEO_F412ZG : Add USB Device +Host https://github.com/ARMmbed/mbed-os/pull/3626
3628: Fix warnings https://github.com/ARMmbed/mbed-os/pull/3628
3629: STM32: L0 LL layer https://github.com/ARMmbed/mbed-os/pull/3629
3632: IDE Export support for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3632
3642: Missing IRQ pin fix for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3642
3664: Fix ncs36510 sleep definitions https://github.com/ARMmbed/mbed-os/pull/3664
3655: [STM32F4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3655
3657: [STM32L4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3657
3658: [STM32F3] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3658
3685: STM32: I2C: reset state machine https://github.com/ARMmbed/mbed-os/pull/3685
3692: uVisor: Standardize available legacy heap and stack https://github.com/ARMmbed/mbed-os/pull/3692
3621: Fix for #2884, LPC824: export to LPCXpresso, target running with wron https://github.com/ARMmbed/mbed-os/pull/3621
3649: [STM32F7] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3649
3695: Enforce device_name is valid in targets.json https://github.com/ARMmbed/mbed-os/pull/3695
3723: NCS36510: spi_format function bug fix https://github.com/ARMmbed/mbed-os/pull/3723

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
<> 135:176b8275d35d 5 * @version V1.1.2
<> 135:176b8275d35d 6 * @date 23-September-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
Kojto 122:f9eeca106725 530 #ifdef __cplusplus
Kojto 122:f9eeca106725 531 }
Kojto 122:f9eeca106725 532 #endif
Kojto 122:f9eeca106725 533
Kojto 122:f9eeca106725 534 #endif /* __STM32F7xx_HAL_CRYP_H */
Kojto 122:f9eeca106725 535
Kojto 122:f9eeca106725 536 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/