i use STM32F439ZIT6U
and activate crypt function like below capture
and use library function
status = HAL_CRYP_Encrypt(&hcryp, (uint32_t *)inputStr, sizeStr, (uint32_t *)outputStr, HAL_MAX_DELAY);
But outpustStr does not come out correctly like the output of other environments like python, online(
https://www.lddgo.net/en/encrypt/aes).
I don't know how to use this library function. Why are the results different?