Problem implementing cryptographic library in stm32h747
I am using STM32H747BI MCU and I have one project to write the data to flash memory. I am using core 7 to write the data to flash. While writing, I have to encrypt the data. So I requested cryptographic library software expansion from STM32 and they provided me the software.
From that software, I copied four files:
- stm32h7xx_hal_cryp.c
- stm32h7xx_hal_cryp.h
- stm32h7xx_hal_cryp_ex.c
- stm32h7xx_hal_cryp_ex.h
After that, I put these files in respective inc and src folders and I uncommented
#define HAL_CRYP_MODULE_ENABLED from stm32h7xx_hal_conf.h.
After doing all of these, I started to encrypt the data but in the project it could not find CRYP_HandleTypeDef .
It shows the error unknown type name 'CRYP_HandleTypeDef'.
Could anybody suggest me what the problem is because I don't know how to solve this issue as I have done all the things that needs to be done.
