After calling AES_GCM_Encrypt_Finish, how do I obtain the correct Initialization vector for the next encrypted message?
I would like to extend the GCM example in STM32CubeExpansion_Crypto_V3.1.0 to be able to encrypt messages over a wired bus. Every message should contain an authentication. So the encryption of every message begins with AES_GCM_Encrypt_Init, and ends ...