STM32F439ZI, the HASH_Start_DMA() function works as expected if the size parameter is 16, elsewhere it doesn't calculate anything
I'm trying to use the STM32F439ZI HASH accelerator with the following code:#define INPUT_SIZE 16 static uint8_t hash_test_buffer[224] = {0}; static uint8_t hash_test_output[224]; HASH_Start_DMA(&hhash, hash_test_buffer, INPUT_SIZE, HASH_ALGOSEL...