mbed(SerialHalfDuplex入り)
Fork of mbed by
TARGET_ARCH_MAX/stm32f4xx_hal_cryp.h@98:01a414ca7d6d, 2015-04-08 (annotated)
- Committer:
- yusuke_kyo
- Date:
- Wed Apr 08 08:04:18 2015 +0000
- Revision:
- 98:01a414ca7d6d
- Parent:
- 92:4fc01daae5a5
remove SerialHalfDuplex.h
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 |
bogdanm | 92:4fc01daae5a5 | 5 | * @version V1.1.0 |
bogdanm | 92:4fc01daae5a5 | 6 | * @date 19-June-2014 |
bogdanm | 89:552587b429a1 | 7 | * @brief Header file of CRYP HAL module. |
bogdanm | 89:552587b429a1 | 8 | ****************************************************************************** |
bogdanm | 89:552587b429a1 | 9 | * @attention |
bogdanm | 89:552587b429a1 | 10 | * |
bogdanm | 89:552587b429a1 | 11 | * <h2><center>© COPYRIGHT(c) 2014 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 | |
bogdanm | 89:552587b429a1 | 60 | /** |
bogdanm | 89:552587b429a1 | 61 | * @brief CRYP Configuration Structure definition |
bogdanm | 89:552587b429a1 | 62 | */ |
bogdanm | 89:552587b429a1 | 63 | typedef struct |
bogdanm | 89:552587b429a1 | 64 | { |
bogdanm | 89:552587b429a1 | 65 | uint32_t DataType; /*!< 32-bit data, 16-bit data, 8-bit data or 1-bit string. |
bogdanm | 89:552587b429a1 | 66 | This parameter can be a value of @ref CRYP_Data_Type */ |
bogdanm | 89:552587b429a1 | 67 | |
bogdanm | 89:552587b429a1 | 68 | uint32_t KeySize; /*!< Used only in AES mode only : 128, 192 or 256 bit key length. |
bogdanm | 89:552587b429a1 | 69 | This parameter can be a value of @ref CRYP_Key_Size */ |
bogdanm | 89:552587b429a1 | 70 | |
bogdanm | 89:552587b429a1 | 71 | uint8_t* pKey; /*!< The key used for encryption/decryption */ |
bogdanm | 89:552587b429a1 | 72 | |
bogdanm | 89:552587b429a1 | 73 | uint8_t* pInitVect; /*!< The initialization vector used also as initialization |
bogdanm | 89:552587b429a1 | 74 | counter in CTR mode */ |
bogdanm | 89:552587b429a1 | 75 | |
bogdanm | 89:552587b429a1 | 76 | uint8_t IVSize; /*!< The size of initialization vector. |
bogdanm | 89:552587b429a1 | 77 | This parameter (called nonce size in CCM) is used only |
bogdanm | 89:552587b429a1 | 78 | in AES-128/192/256 encryption/decryption CCM mode */ |
bogdanm | 89:552587b429a1 | 79 | |
bogdanm | 89:552587b429a1 | 80 | uint8_t TagSize; /*!< The size of returned authentication TAG. |
bogdanm | 89:552587b429a1 | 81 | This parameter is used only in AES-128/192/256 |
bogdanm | 89:552587b429a1 | 82 | encryption/decryption CCM mode */ |
bogdanm | 89:552587b429a1 | 83 | |
bogdanm | 89:552587b429a1 | 84 | uint8_t* Header; /*!< The header used in GCM and CCM modes */ |
bogdanm | 89:552587b429a1 | 85 | |
bogdanm | 89:552587b429a1 | 86 | uint16_t HeaderSize; /*!< The size of header buffer in bytes */ |
bogdanm | 89:552587b429a1 | 87 | |
bogdanm | 89:552587b429a1 | 88 | uint8_t* pScratch; /*!< Scratch buffer used to append the header. It's size must be equal to header size + 21 bytes. |
bogdanm | 89:552587b429a1 | 89 | This parameter is used only in AES-128/192/256 encryption/decryption CCM mode */ |
bogdanm | 89:552587b429a1 | 90 | }CRYP_InitTypeDef; |
bogdanm | 89:552587b429a1 | 91 | |
bogdanm | 89:552587b429a1 | 92 | /** |
bogdanm | 89:552587b429a1 | 93 | * @brief HAL CRYP State structures definition |
bogdanm | 89:552587b429a1 | 94 | */ |
bogdanm | 89:552587b429a1 | 95 | typedef enum |
bogdanm | 89:552587b429a1 | 96 | { |
bogdanm | 89:552587b429a1 | 97 | HAL_CRYP_STATE_RESET = 0x00, /*!< CRYP not yet initialized or disabled */ |
bogdanm | 89:552587b429a1 | 98 | HAL_CRYP_STATE_READY = 0x01, /*!< CRYP initialized and ready for use */ |
bogdanm | 89:552587b429a1 | 99 | HAL_CRYP_STATE_BUSY = 0x02, /*!< CRYP internal processing is ongoing */ |
bogdanm | 89:552587b429a1 | 100 | HAL_CRYP_STATE_TIMEOUT = 0x03, /*!< CRYP timeout state */ |
bogdanm | 89:552587b429a1 | 101 | HAL_CRYP_STATE_ERROR = 0x04 /*!< CRYP error state */ |
bogdanm | 89:552587b429a1 | 102 | }HAL_CRYP_STATETypeDef; |
bogdanm | 89:552587b429a1 | 103 | |
bogdanm | 89:552587b429a1 | 104 | /** |
bogdanm | 89:552587b429a1 | 105 | * @brief HAL CRYP phase structures definition |
bogdanm | 89:552587b429a1 | 106 | */ |
bogdanm | 89:552587b429a1 | 107 | typedef enum |
bogdanm | 89:552587b429a1 | 108 | { |
bogdanm | 89:552587b429a1 | 109 | HAL_CRYP_PHASE_READY = 0x01, /*!< CRYP peripheral is ready for initialization. */ |
bogdanm | 89:552587b429a1 | 110 | HAL_CRYP_PHASE_PROCESS = 0x02, /*!< CRYP peripheral is in processing phase */ |
bogdanm | 89:552587b429a1 | 111 | HAL_CRYP_PHASE_FINAL = 0x03 /*!< CRYP peripheral is in final phase |
bogdanm | 89:552587b429a1 | 112 | This is relevant only with CCM and GCM modes */ |
bogdanm | 89:552587b429a1 | 113 | }HAL_PhaseTypeDef; |
bogdanm | 89:552587b429a1 | 114 | |
bogdanm | 89:552587b429a1 | 115 | /** |
bogdanm | 89:552587b429a1 | 116 | * @brief CRYP handle Structure definition |
bogdanm | 89:552587b429a1 | 117 | */ |
bogdanm | 89:552587b429a1 | 118 | typedef struct |
bogdanm | 89:552587b429a1 | 119 | { |
bogdanm | 89:552587b429a1 | 120 | CRYP_InitTypeDef Init; /*!< CRYP required parameters */ |
bogdanm | 89:552587b429a1 | 121 | |
bogdanm | 89:552587b429a1 | 122 | uint8_t *pCrypInBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) buffer */ |
bogdanm | 89:552587b429a1 | 123 | |
bogdanm | 89:552587b429a1 | 124 | uint8_t *pCrypOutBuffPtr; /*!< Pointer to CRYP processing (encryption, decryption,...) buffer */ |
bogdanm | 89:552587b429a1 | 125 | |
bogdanm | 89:552587b429a1 | 126 | __IO uint16_t CrypInCount; /*!< Counter of inputed data */ |
bogdanm | 89:552587b429a1 | 127 | |
bogdanm | 89:552587b429a1 | 128 | __IO uint16_t CrypOutCount; /*!< Counter of outputed data */ |
bogdanm | 89:552587b429a1 | 129 | |
bogdanm | 89:552587b429a1 | 130 | HAL_StatusTypeDef Status; /*!< CRYP peripheral status */ |
bogdanm | 89:552587b429a1 | 131 | |
bogdanm | 89:552587b429a1 | 132 | HAL_PhaseTypeDef Phase; /*!< CRYP peripheral phase */ |
bogdanm | 89:552587b429a1 | 133 | |
bogdanm | 89:552587b429a1 | 134 | DMA_HandleTypeDef *hdmain; /*!< CRYP In DMA handle parameters */ |
bogdanm | 89:552587b429a1 | 135 | |
bogdanm | 89:552587b429a1 | 136 | DMA_HandleTypeDef *hdmaout; /*!< CRYP Out DMA handle parameters */ |
bogdanm | 89:552587b429a1 | 137 | |
bogdanm | 89:552587b429a1 | 138 | HAL_LockTypeDef Lock; /*!< CRYP locking object */ |
bogdanm | 89:552587b429a1 | 139 | |
bogdanm | 89:552587b429a1 | 140 | __IO HAL_CRYP_STATETypeDef State; /*!< CRYP peripheral state */ |
bogdanm | 89:552587b429a1 | 141 | }CRYP_HandleTypeDef; |
bogdanm | 89:552587b429a1 | 142 | |
bogdanm | 89:552587b429a1 | 143 | /* Exported constants --------------------------------------------------------*/ |
bogdanm | 89:552587b429a1 | 144 | |
bogdanm | 89:552587b429a1 | 145 | /** @defgroup CRYP_Exported_Constants |
bogdanm | 89:552587b429a1 | 146 | * @{ |
bogdanm | 89:552587b429a1 | 147 | */ |
bogdanm | 89:552587b429a1 | 148 | |
bogdanm | 89:552587b429a1 | 149 | /** @defgroup CRYP_Key_Size |
bogdanm | 89:552587b429a1 | 150 | * @{ |
bogdanm | 89:552587b429a1 | 151 | */ |
bogdanm | 89:552587b429a1 | 152 | #define CRYP_KEYSIZE_128B ((uint32_t)0x00000000) |
bogdanm | 89:552587b429a1 | 153 | #define CRYP_KEYSIZE_192B CRYP_CR_KEYSIZE_0 |
bogdanm | 89:552587b429a1 | 154 | #define CRYP_KEYSIZE_256B CRYP_CR_KEYSIZE_1 |
bogdanm | 89:552587b429a1 | 155 | |
bogdanm | 89:552587b429a1 | 156 | #define IS_CRYP_KEYSIZE(KEYSIZE) (((KEYSIZE) == CRYP_KEYSIZE_128B) || \ |
bogdanm | 89:552587b429a1 | 157 | ((KEYSIZE) == CRYP_KEYSIZE_192B) || \ |
bogdanm | 89:552587b429a1 | 158 | ((KEYSIZE) == CRYP_KEYSIZE_256B)) |
bogdanm | 89:552587b429a1 | 159 | /** |
bogdanm | 89:552587b429a1 | 160 | * @} |
bogdanm | 89:552587b429a1 | 161 | */ |
bogdanm | 89:552587b429a1 | 162 | |
bogdanm | 89:552587b429a1 | 163 | /** @defgroup CRYP_Data_Type |
bogdanm | 89:552587b429a1 | 164 | * @{ |
bogdanm | 89:552587b429a1 | 165 | */ |
bogdanm | 89:552587b429a1 | 166 | #define CRYP_DATATYPE_32B ((uint32_t)0x00000000) |
bogdanm | 89:552587b429a1 | 167 | #define CRYP_DATATYPE_16B CRYP_CR_DATATYPE_0 |
bogdanm | 89:552587b429a1 | 168 | #define CRYP_DATATYPE_8B CRYP_CR_DATATYPE_1 |
bogdanm | 89:552587b429a1 | 169 | #define CRYP_DATATYPE_1B CRYP_CR_DATATYPE |
bogdanm | 89:552587b429a1 | 170 | |
bogdanm | 89:552587b429a1 | 171 | #define IS_CRYP_DATATYPE(DATATYPE) (((DATATYPE) == CRYP_DATATYPE_32B) || \ |
bogdanm | 89:552587b429a1 | 172 | ((DATATYPE) == CRYP_DATATYPE_16B) || \ |
bogdanm | 89:552587b429a1 | 173 | ((DATATYPE) == CRYP_DATATYPE_8B) || \ |
bogdanm | 89:552587b429a1 | 174 | ((DATATYPE) == CRYP_DATATYPE_1B)) |
bogdanm | 89:552587b429a1 | 175 | /** |
bogdanm | 89:552587b429a1 | 176 | * @} |
bogdanm | 89:552587b429a1 | 177 | */ |
bogdanm | 89:552587b429a1 | 178 | |
bogdanm | 89:552587b429a1 | 179 | /** @defgroup CRYP_AlgoModeDirection |
bogdanm | 89:552587b429a1 | 180 | * @{ |
bogdanm | 89:552587b429a1 | 181 | */ |
bogdanm | 89:552587b429a1 | 182 | #define CRYP_CR_ALGOMODE_DIRECTION ((uint32_t)0x0008003C) |
bogdanm | 89:552587b429a1 | 183 | #define CRYP_CR_ALGOMODE_TDES_ECB_ENCRYPT ((uint32_t)0x00000000) |
bogdanm | 89:552587b429a1 | 184 | #define CRYP_CR_ALGOMODE_TDES_ECB_DECRYPT ((uint32_t)0x00000004) |
bogdanm | 89:552587b429a1 | 185 | #define CRYP_CR_ALGOMODE_TDES_CBC_ENCRYPT ((uint32_t)0x00000008) |
bogdanm | 89:552587b429a1 | 186 | #define CRYP_CR_ALGOMODE_TDES_CBC_DECRYPT ((uint32_t)0x0000000C) |
bogdanm | 89:552587b429a1 | 187 | #define CRYP_CR_ALGOMODE_DES_ECB_ENCRYPT ((uint32_t)0x00000010) |
bogdanm | 89:552587b429a1 | 188 | #define CRYP_CR_ALGOMODE_DES_ECB_DECRYPT ((uint32_t)0x00000014) |
bogdanm | 89:552587b429a1 | 189 | #define CRYP_CR_ALGOMODE_DES_CBC_ENCRYPT ((uint32_t)0x00000018) |
bogdanm | 89:552587b429a1 | 190 | #define CRYP_CR_ALGOMODE_DES_CBC_DECRYPT ((uint32_t)0x0000001C) |
bogdanm | 89:552587b429a1 | 191 | #define CRYP_CR_ALGOMODE_AES_ECB_ENCRYPT ((uint32_t)0x00000020) |
bogdanm | 89:552587b429a1 | 192 | #define CRYP_CR_ALGOMODE_AES_ECB_DECRYPT ((uint32_t)0x00000024) |
bogdanm | 89:552587b429a1 | 193 | #define CRYP_CR_ALGOMODE_AES_CBC_ENCRYPT ((uint32_t)0x00000028) |
bogdanm | 89:552587b429a1 | 194 | #define CRYP_CR_ALGOMODE_AES_CBC_DECRYPT ((uint32_t)0x0000002C) |
bogdanm | 89:552587b429a1 | 195 | #define CRYP_CR_ALGOMODE_AES_CTR_ENCRYPT ((uint32_t)0x00000030) |
bogdanm | 89:552587b429a1 | 196 | #define CRYP_CR_ALGOMODE_AES_CTR_DECRYPT ((uint32_t)0x00000034) |
bogdanm | 89:552587b429a1 | 197 | /** |
bogdanm | 89:552587b429a1 | 198 | * @} |
bogdanm | 89:552587b429a1 | 199 | */ |
bogdanm | 89:552587b429a1 | 200 | |
bogdanm | 89:552587b429a1 | 201 | /** @defgroup CRYP_Interrupt |
bogdanm | 89:552587b429a1 | 202 | * @{ |
bogdanm | 89:552587b429a1 | 203 | */ |
bogdanm | 89:552587b429a1 | 204 | #define CRYP_IT_INI ((uint32_t)CRYP_IMSCR_INIM) /*!< Input FIFO Interrupt */ |
bogdanm | 89:552587b429a1 | 205 | #define CRYP_IT_OUTI ((uint32_t)CRYP_IMSCR_OUTIM) /*!< Output FIFO Interrupt */ |
bogdanm | 89:552587b429a1 | 206 | /** |
bogdanm | 89:552587b429a1 | 207 | * @} |
bogdanm | 89:552587b429a1 | 208 | */ |
bogdanm | 89:552587b429a1 | 209 | |
bogdanm | 89:552587b429a1 | 210 | /** @defgroup CRYP_Flags |
bogdanm | 89:552587b429a1 | 211 | * @{ |
bogdanm | 89:552587b429a1 | 212 | */ |
bogdanm | 89:552587b429a1 | 213 | |
bogdanm | 89:552587b429a1 | 214 | #define CRYP_FLAG_BUSY ((uint32_t)0x00000010) /*!< The CRYP core is currently |
bogdanm | 89:552587b429a1 | 215 | processing a block of data |
bogdanm | 89:552587b429a1 | 216 | or a key preparation (for |
bogdanm | 89:552587b429a1 | 217 | AES decryption). */ |
bogdanm | 89:552587b429a1 | 218 | #define CRYP_FLAG_IFEM ((uint32_t)0x00000001) /*!< Input FIFO is empty */ |
bogdanm | 89:552587b429a1 | 219 | #define CRYP_FLAG_IFNF ((uint32_t)0x00000002) /*!< Input FIFO is not Full */ |
bogdanm | 89:552587b429a1 | 220 | #define CRYP_FLAG_OFNE ((uint32_t)0x00000004) /*!< Output FIFO is not empty */ |
bogdanm | 89:552587b429a1 | 221 | #define CRYP_FLAG_OFFU ((uint32_t)0x00000008) /*!< Output FIFO is Full */ |
bogdanm | 89:552587b429a1 | 222 | #define CRYP_FLAG_OUTRIS ((uint32_t)0x01000002) /*!< Output FIFO service raw |
bogdanm | 89:552587b429a1 | 223 | interrupt status */ |
bogdanm | 89:552587b429a1 | 224 | #define CRYP_FLAG_INRIS ((uint32_t)0x01000001) /*!< Input FIFO service raw |
bogdanm | 89:552587b429a1 | 225 | interrupt status */ |
bogdanm | 89:552587b429a1 | 226 | /** |
bogdanm | 89:552587b429a1 | 227 | * @} |
bogdanm | 89:552587b429a1 | 228 | */ |
bogdanm | 89:552587b429a1 | 229 | |
bogdanm | 89:552587b429a1 | 230 | /** |
bogdanm | 89:552587b429a1 | 231 | * @} |
bogdanm | 89:552587b429a1 | 232 | */ |
bogdanm | 89:552587b429a1 | 233 | |
bogdanm | 89:552587b429a1 | 234 | /* Exported macro ------------------------------------------------------------*/ |
bogdanm | 89:552587b429a1 | 235 | |
bogdanm | 89:552587b429a1 | 236 | /** @brief Reset CRYP handle state |
bogdanm | 89:552587b429a1 | 237 | * @param __HANDLE__: specifies the CRYP handle. |
bogdanm | 89:552587b429a1 | 238 | * @retval None |
bogdanm | 89:552587b429a1 | 239 | */ |
bogdanm | 89:552587b429a1 | 240 | #define __HAL_CRYP_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_CRYP_STATE_RESET) |
bogdanm | 89:552587b429a1 | 241 | |
bogdanm | 89:552587b429a1 | 242 | /** |
bogdanm | 89:552587b429a1 | 243 | * @brief Enable/Disable the CRYP peripheral. |
bogdanm | 89:552587b429a1 | 244 | * @param None |
bogdanm | 89:552587b429a1 | 245 | * @retval None |
bogdanm | 89:552587b429a1 | 246 | */ |
bogdanm | 89:552587b429a1 | 247 | #define __HAL_CRYP_ENABLE() (CRYP->CR |= CRYP_CR_CRYPEN) |
bogdanm | 89:552587b429a1 | 248 | #define __HAL_CRYP_DISABLE() (CRYP->CR &= ~CRYP_CR_CRYPEN) |
bogdanm | 89:552587b429a1 | 249 | |
bogdanm | 89:552587b429a1 | 250 | /** |
bogdanm | 89:552587b429a1 | 251 | * @brief Flush the data FIFO. |
bogdanm | 89:552587b429a1 | 252 | * @param None |
bogdanm | 89:552587b429a1 | 253 | * @retval None |
bogdanm | 89:552587b429a1 | 254 | */ |
bogdanm | 89:552587b429a1 | 255 | #define __HAL_CRYP_FIFO_FLUSH() (CRYP->CR |= CRYP_CR_FFLUSH) |
bogdanm | 89:552587b429a1 | 256 | |
bogdanm | 89:552587b429a1 | 257 | /** |
bogdanm | 92:4fc01daae5a5 | 258 | * @brief Set the algorithm mode: AES-ECB, AES-CBC, AES-CTR, DES-ECB, DES-CBC. |
bogdanm | 89:552587b429a1 | 259 | * @param MODE: The algorithm mode. |
bogdanm | 89:552587b429a1 | 260 | * @retval None |
bogdanm | 89:552587b429a1 | 261 | */ |
bogdanm | 89:552587b429a1 | 262 | #define __HAL_CRYP_SET_MODE(MODE) CRYP->CR |= (uint32_t)(MODE) |
bogdanm | 89:552587b429a1 | 263 | |
bogdanm | 89:552587b429a1 | 264 | /** @brief Check whether the specified CRYP flag is set or not. |
bogdanm | 89:552587b429a1 | 265 | * @param __FLAG__: specifies the flag to check. |
bogdanm | 89:552587b429a1 | 266 | * This parameter can be one of the following values: |
bogdanm | 89:552587b429a1 | 267 | * @arg CRYP_FLAG_BUSY: The CRYP core is currently processing a block of data |
bogdanm | 89:552587b429a1 | 268 | * or a key preparation (for AES decryption). |
bogdanm | 89:552587b429a1 | 269 | * @arg CRYP_FLAG_IFEM: Input FIFO is empty |
bogdanm | 89:552587b429a1 | 270 | * @arg CRYP_FLAG_IFNF: Input FIFO is not full |
bogdanm | 89:552587b429a1 | 271 | * @arg CRYP_FLAG_INRIS: Input FIFO service raw interrupt is pending |
bogdanm | 89:552587b429a1 | 272 | * @arg CRYP_FLAG_OFNE: Output FIFO is not empty |
bogdanm | 89:552587b429a1 | 273 | * @arg CRYP_FLAG_OFFU: Output FIFO is full |
bogdanm | 89:552587b429a1 | 274 | * @arg CRYP_FLAG_OUTRIS: Input FIFO service raw interrupt is pending |
bogdanm | 89:552587b429a1 | 275 | * @retval The new state of __FLAG__ (TRUE or FALSE). |
bogdanm | 89:552587b429a1 | 276 | */ |
bogdanm | 89:552587b429a1 | 277 | #define CRYP_FLAG_MASK ((uint32_t)0x0000001F) |
bogdanm | 89:552587b429a1 | 278 | #define __HAL_CRYP_GET_FLAG(__FLAG__) ((((uint8_t)((__FLAG__) >> 24)) == 0x01)?(((CRYP->RISR) & ((__FLAG__) & CRYP_FLAG_MASK)) == ((__FLAG__) & CRYP_FLAG_MASK)): \ |
bogdanm | 89:552587b429a1 | 279 | (((CRYP->RISR) & ((__FLAG__) & CRYP_FLAG_MASK)) == ((__FLAG__) & CRYP_FLAG_MASK))) |
bogdanm | 89:552587b429a1 | 280 | |
bogdanm | 89:552587b429a1 | 281 | /** @brief Check whether the specified CRYP interrupt is set or not. |
bogdanm | 89:552587b429a1 | 282 | * @param __INTERRUPT__: specifies the interrupt to check. |
bogdanm | 89:552587b429a1 | 283 | * This parameter can be one of the following values: |
bogdanm | 89:552587b429a1 | 284 | * @arg CRYP_IT_INRIS: Input FIFO service raw interrupt is pending |
bogdanm | 89:552587b429a1 | 285 | * @arg CRYP_IT_OUTRIS: Output FIFO service raw interrupt is pending |
bogdanm | 89:552587b429a1 | 286 | * @retval The new state of __INTERRUPT__ (TRUE or FALSE). |
bogdanm | 89:552587b429a1 | 287 | */ |
bogdanm | 89:552587b429a1 | 288 | #define __HAL_CRYP_GET_IT(__INTERRUPT__) ((CRYP->MISR & (__INTERRUPT__)) == (__INTERRUPT__)) |
bogdanm | 89:552587b429a1 | 289 | |
bogdanm | 89:552587b429a1 | 290 | /** |
bogdanm | 89:552587b429a1 | 291 | * @brief Enable the CRYP interrupt. |
bogdanm | 89:552587b429a1 | 292 | * @param __INTERRUPT__: CRYP Interrupt. |
bogdanm | 89:552587b429a1 | 293 | * @retval None |
bogdanm | 89:552587b429a1 | 294 | */ |
bogdanm | 89:552587b429a1 | 295 | #define __HAL_CRYP_ENABLE_IT(__INTERRUPT__) ((CRYP->IMSCR) |= (__INTERRUPT__)) |
bogdanm | 89:552587b429a1 | 296 | |
bogdanm | 89:552587b429a1 | 297 | /** |
bogdanm | 89:552587b429a1 | 298 | * @brief Disable the CRYP interrupt. |
bogdanm | 89:552587b429a1 | 299 | * @param __INTERRUPT__: CRYP interrupt. |
bogdanm | 89:552587b429a1 | 300 | * @retval None |
bogdanm | 89:552587b429a1 | 301 | */ |
bogdanm | 89:552587b429a1 | 302 | #define __HAL_CRYP_DISABLE_IT(__INTERRUPT__) ((CRYP->IMSCR) &= ~(__INTERRUPT__)) |
bogdanm | 89:552587b429a1 | 303 | |
bogdanm | 89:552587b429a1 | 304 | /* Include CRYP HAL Extension module */ |
bogdanm | 89:552587b429a1 | 305 | #include "stm32f4xx_hal_cryp_ex.h" |
bogdanm | 89:552587b429a1 | 306 | |
bogdanm | 89:552587b429a1 | 307 | /* Exported functions --------------------------------------------------------*/ |
bogdanm | 89:552587b429a1 | 308 | /* Initialization/de-initialization functions ********************************/ |
bogdanm | 89:552587b429a1 | 309 | HAL_StatusTypeDef HAL_CRYP_Init(CRYP_HandleTypeDef *hcryp); |
bogdanm | 89:552587b429a1 | 310 | HAL_StatusTypeDef HAL_CRYP_DeInit(CRYP_HandleTypeDef *hcryp); |
bogdanm | 89:552587b429a1 | 311 | |
bogdanm | 89:552587b429a1 | 312 | /* AES encryption/decryption using polling ***********************************/ |
bogdanm | 89:552587b429a1 | 313 | HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 314 | HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 315 | HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 316 | HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 317 | HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 318 | HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 319 | |
bogdanm | 89:552587b429a1 | 320 | /* AES encryption/decryption using interrupt *********************************/ |
bogdanm | 89:552587b429a1 | 321 | HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 322 | HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 323 | HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 324 | HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 325 | HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 326 | HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 327 | |
bogdanm | 89:552587b429a1 | 328 | /* AES encryption/decryption using DMA ***************************************/ |
bogdanm | 89:552587b429a1 | 329 | HAL_StatusTypeDef HAL_CRYP_AESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 330 | HAL_StatusTypeDef HAL_CRYP_AESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 331 | HAL_StatusTypeDef HAL_CRYP_AESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 332 | HAL_StatusTypeDef HAL_CRYP_AESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 333 | HAL_StatusTypeDef HAL_CRYP_AESCTR_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 334 | HAL_StatusTypeDef HAL_CRYP_AESCTR_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 335 | |
bogdanm | 89:552587b429a1 | 336 | /* DES encryption/decryption using polling ***********************************/ |
bogdanm | 89:552587b429a1 | 337 | HAL_StatusTypeDef HAL_CRYP_DESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 338 | HAL_StatusTypeDef HAL_CRYP_DESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 339 | HAL_StatusTypeDef HAL_CRYP_DESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 340 | HAL_StatusTypeDef HAL_CRYP_DESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 341 | |
bogdanm | 89:552587b429a1 | 342 | /* DES encryption/decryption using interrupt *********************************/ |
bogdanm | 89:552587b429a1 | 343 | HAL_StatusTypeDef HAL_CRYP_DESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 344 | HAL_StatusTypeDef HAL_CRYP_DESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 345 | HAL_StatusTypeDef HAL_CRYP_DESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 346 | HAL_StatusTypeDef HAL_CRYP_DESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 347 | |
bogdanm | 89:552587b429a1 | 348 | /* DES encryption/decryption using DMA ***************************************/ |
bogdanm | 89:552587b429a1 | 349 | HAL_StatusTypeDef HAL_CRYP_DESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 350 | HAL_StatusTypeDef HAL_CRYP_DESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 351 | HAL_StatusTypeDef HAL_CRYP_DESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 352 | HAL_StatusTypeDef HAL_CRYP_DESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 353 | |
bogdanm | 89:552587b429a1 | 354 | /* TDES encryption/decryption using polling **********************************/ |
bogdanm | 89:552587b429a1 | 355 | HAL_StatusTypeDef HAL_CRYP_TDESECB_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 356 | HAL_StatusTypeDef HAL_CRYP_TDESCBC_Encrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 357 | HAL_StatusTypeDef HAL_CRYP_TDESECB_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 358 | HAL_StatusTypeDef HAL_CRYP_TDESCBC_Decrypt(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData, uint32_t Timeout); |
bogdanm | 89:552587b429a1 | 359 | |
bogdanm | 89:552587b429a1 | 360 | /* TDES encryption/decryption using interrupt ********************************/ |
bogdanm | 89:552587b429a1 | 361 | HAL_StatusTypeDef HAL_CRYP_TDESECB_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 362 | HAL_StatusTypeDef HAL_CRYP_TDESECB_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 363 | HAL_StatusTypeDef HAL_CRYP_TDESCBC_Encrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 364 | HAL_StatusTypeDef HAL_CRYP_TDESCBC_Decrypt_IT(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 365 | |
bogdanm | 89:552587b429a1 | 366 | /* TDES encryption/decryption using DMA **************************************/ |
bogdanm | 89:552587b429a1 | 367 | HAL_StatusTypeDef HAL_CRYP_TDESECB_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 368 | HAL_StatusTypeDef HAL_CRYP_TDESECB_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 369 | HAL_StatusTypeDef HAL_CRYP_TDESCBC_Encrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pPlainData, uint16_t Size, uint8_t *pCypherData); |
bogdanm | 89:552587b429a1 | 370 | HAL_StatusTypeDef HAL_CRYP_TDESCBC_Decrypt_DMA(CRYP_HandleTypeDef *hcryp, uint8_t *pCypherData, uint16_t Size, uint8_t *pPlainData); |
bogdanm | 89:552587b429a1 | 371 | |
bogdanm | 89:552587b429a1 | 372 | /* Processing functions ******************************************************/ |
bogdanm | 89:552587b429a1 | 373 | void HAL_CRYP_IRQHandler(CRYP_HandleTypeDef *hcryp); |
bogdanm | 89:552587b429a1 | 374 | |
bogdanm | 89:552587b429a1 | 375 | /* Peripheral State functions ************************************************/ |
bogdanm | 89:552587b429a1 | 376 | HAL_CRYP_STATETypeDef HAL_CRYP_GetState(CRYP_HandleTypeDef *hcryp); |
bogdanm | 89:552587b429a1 | 377 | |
bogdanm | 89:552587b429a1 | 378 | /* MSP functions *************************************************************/ |
bogdanm | 89:552587b429a1 | 379 | void HAL_CRYP_MspInit(CRYP_HandleTypeDef *hcryp); |
bogdanm | 89:552587b429a1 | 380 | void HAL_CRYP_MspDeInit(CRYP_HandleTypeDef *hcryp); |
bogdanm | 89:552587b429a1 | 381 | |
bogdanm | 89:552587b429a1 | 382 | /* CallBack functions ********************************************************/ |
bogdanm | 89:552587b429a1 | 383 | void HAL_CRYP_InCpltCallback(CRYP_HandleTypeDef *hcryp); |
bogdanm | 89:552587b429a1 | 384 | void HAL_CRYP_OutCpltCallback(CRYP_HandleTypeDef *hcryp); |
bogdanm | 89:552587b429a1 | 385 | void HAL_CRYP_ErrorCallback(CRYP_HandleTypeDef *hcryp); |
bogdanm | 89:552587b429a1 | 386 | |
bogdanm | 89:552587b429a1 | 387 | #endif /* STM32F415xx || STM32F417xx || STM32F437xx || STM32F439xx */ |
bogdanm | 89:552587b429a1 | 388 | |
bogdanm | 89:552587b429a1 | 389 | /** |
bogdanm | 89:552587b429a1 | 390 | * @} |
bogdanm | 89:552587b429a1 | 391 | */ |
bogdanm | 89:552587b429a1 | 392 | |
bogdanm | 89:552587b429a1 | 393 | /** |
bogdanm | 89:552587b429a1 | 394 | * @} |
bogdanm | 89:552587b429a1 | 395 | */ |
bogdanm | 89:552587b429a1 | 396 | |
bogdanm | 89:552587b429a1 | 397 | #ifdef __cplusplus |
bogdanm | 89:552587b429a1 | 398 | } |
bogdanm | 89:552587b429a1 | 399 | #endif |
bogdanm | 89:552587b429a1 | 400 | |
bogdanm | 89:552587b429a1 | 401 | #endif /* __STM32F4xx_HAL_CRYP_H */ |
bogdanm | 89:552587b429a1 | 402 | |
bogdanm | 89:552587b429a1 | 403 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |