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