RDP protection code for STM32H563IIK6
We are using the STM32H563IIK6 in our Device.I want to Enabled CRP protection. We are thinking use Level1only. Please can you share any test code.
Ask questions and find answers on STM32 security frameworks and tools, including cryptographic libraries, TrustZone, and the Secure Manager.
We are using the STM32H563IIK6 in our Device.I want to Enabled CRP protection. We are thinking use Level1only. Please can you share any test code.
Hi, I've decided to create a new post based on the similar one (https://community.st.com/t5/stm32-mcus-security/solved-stm32u5-tfm-example-b-u585i-iot02a-memory-mapped-psram/td-p/108722) which has been solved but doesn't work for me.The problem is as...
HiI am using the SBSFU application on the stm32u585 board and I am trying to use the crypto library as explained in the CRYP_SAES_ECB_CBC example but the error_handler is triggered when the MX_SAES_AES_Init is initialized.Any help?
I tried CRP protection for STM32H563IIK6. But is it not working. This is the code.#define OB_RDP_LEVEL_0 ((uint8_t)0xAA)#define OB_RDP_LEVEL_1 ((uint8_t)0x55)#define OB_RDP_LEVEL_2 ((uint8_t)0xCC)HAL_StatusTypeDef FLASH_If_WriteProtectionConfig(uint3...
Hi, I'm quite familiar with STM32 trustzone features. Also I know due to there's a random number generator it should be ANSSI capable. But I can't find anywhere a text "ANSSI". Have you as a ST already applied a ANSSI certificate for STM32U545 or any...
Hi, good morning, sir/madam.We are using a STM32F423ZHT6 MCU for Smart Lock in our project.We have some security purposes for our lock and need security boot options.So please clarify this MCU has secure boot options. If this MCU has secure boot opti...
Hello We are testing the SBSFU project on STM32U585 released in the cubeu5 project and came to see that the secure project uses 14kb of size and non secure approximate 1.2MB. Our requirement is to add some modules into the secure area and we need to ...
Hello, I am confused in finalizing a secure chip for my iot gateway(linux). I read all the documents for ST SAFE-A110. My gateway has an mqtt broker which is bridged to another broker in cloud. In order to Implement TLS for mqtt i need to provide key...
Is this the right way? if (FLASH_OB_GetRDP() != OB_RDP_LEVEL_2) { HAL_FLASH_Unlock(); // Unlock the flash memory HAL_FLASH_OB_Unlock(); // Unlock the option bytes *(__IO uint8_t*) OPTCR_BYTE1_ADDRESS = OB_RDP_LEVEL_2; // Set RDP2 HAL_FL...
Hi,I've developed a custom board and I want to leave an encrypted signature using the STSAFE-A110 chip. However, I'm coding my board in Python, and I'm having trouble figuring out how to interact with the chip. I found the "STSAFE-A complete set of A...