123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- /**
- ********************************************************************************
- * @file stm8l15x_aes.h
- * @author MCD Application Team
- * @version V1.6.1
- * @date 30-September-2014
- * @brief This file contains all the functions prototypes for the AES firmware
- * library.
- ******************************************************************************
- * @attention
- *
- * <h2><center>© COPYRIGHT 2014 STMicroelectronics</center></h2>
- *
- * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
- * You may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.st.com/software_license_agreement_liberty_v2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ******************************************************************************
- */
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef __STM8L15x_AES_H
- #define __STM8L15x_AES_H
- /* Includes ------------------------------------------------------------------*/
- #include "stm8l15x.h"
- /** @addtogroup STM8L15x_StdPeriph_Driver
- * @{
- */
-
- /** @addtogroup AES
- * @{
- */
- /* Exported types ------------------------------------------------------------*/
- /** @defgroup AES_Exported_Types
- * @{
- */
- /** @defgroup AES_Operation_Mode
- * @{
- */
- typedef enum
- {
- AES_Operation_Encryp = (uint8_t)0x00, /*!< AES in Encryption mode */
- AES_Operation_KeyDeriv = (uint8_t)0x02, /*!< AES in Key Derivation mode */
- AES_Operation_Decryp = (uint8_t)0x04, /*!< AES in Decryption mode */
- AES_Operation_KeyDerivAndDecryp = (uint8_t)0x06 /*!< AES in Key Derivation and Decryption mode */
- } AES_Operation_TypeDef;
- #define IS_AES_MODE(Operation) (((Operation) == AES_Operation_Encryp) || \
- ((Operation) == AES_Operation_KeyDeriv) || \
- ((Operation) == AES_Operation_Decryp) || \
- ((Operation) == AES_Operation_KeyDerivAndDecryp))
- /**
- * @}
- */
-
- /** @defgroup AES_Flags
- * @{
- */
- typedef enum
- {
- AES_FLAG_CCF = (uint8_t)0x01, /*!< Computation Complete Flag */
- AES_FLAG_RDERR = (uint8_t)0x02, /*!< Read Error Flag */
- AES_FLAG_WRERR = (uint8_t)0x04 /*!< Write Error Flag */
- }AES_FLAG_TypeDef;
- #define IS_AES_FLAG(Flag) (((Flag) == AES_FLAG_CCF) || \
- ((Flag) == AES_FLAG_RDERR) || \
- ((Flag) == AES_FLAG_WRERR))
-
- /**
- * @}
- */
-
- /** @defgroup AES_Interrupts
- * @{
- */
- typedef enum
- {
- AES_IT_CCIE = (uint16_t)0x20, /*!< Computation Complete interrupt enable */
- AES_IT_ERRIE = (uint16_t)0x40 /*!< Error interrupt enable */
- }AES_IT_TypeDef;
- #define IS_AES_IT(IT) (((IT) == AES_IT_CCIE) || \
- ((IT) == AES_IT_ERRIE))
-
- /**
- * @}
- */
-
- /** @defgroup AES_DMA_Transfer_Direction
- * @{
- */
- typedef enum
- {
- AES_DMATransfer_InOut = (uint8_t) 0x80 /*!< DMA requests enabled for input transfer phase
- as well as for the output transfer phase */
- }
- AES_DMATransfer_TypeDef;
- #define IS_AES_DMATRANSFER(Transfer) ((Transfer) == AES_DMATransfer_InOut)
- /**
- * @}
- */
-
- /**
- * @}
- */
-
- /* Exported constants --------------------------------------------------------*/
- /* Exported macros -----------------------------------------------------------*/
- /* Exported functions ------------------------------------------------------- */
- /* Function used to set the AES configuration to the default reset state *****/
- void AES_DeInit(void);
- /* AES Configuration **********************************************************/
- void AES_OperationModeConfig(AES_Operation_TypeDef AES_Operation);
- void AES_Cmd(FunctionalState NewState);
- /* AES Read and Write operations **********************************************/
- void AES_WriteSubData(uint8_t Data);
- void AES_WriteSubKey(uint8_t Key);
- uint8_t AES_ReadSubData(void);
- uint8_t AES_ReadSubKey(void);
- /* DMA transfers management function ******************************************/
- void AES_DMAConfig(AES_DMATransfer_TypeDef AES_DMATransfer, FunctionalState NewState);
- /* Interrupts and flags management functions **********************************/
- void AES_ITConfig(AES_IT_TypeDef AES_IT, FunctionalState NewState);
- FlagStatus AES_GetFlagStatus(AES_FLAG_TypeDef AES_FLAG);
- void AES_ClearFlag(AES_FLAG_TypeDef AES_FLAG);
- ITStatus AES_GetITStatus(AES_IT_TypeDef AES_IT);
- void AES_ClearITPendingBit(AES_IT_TypeDef AES_IT);
- #endif /* __STM8L15x_AES_H */
- /**
- * @}
- */
- /**
- * @}
- */
- /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|