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