Why the STM32_AES_CBC_Encrypt function doesn't return multiple of 64 bytes encrypted message
Hi,
I am using the function STM32_AES_CBC_Encrypt from the ST library Crypto 3.1.0. I don't understand why this function doesn't give me an encrypted message which is a multiple of 64 bytes.
For example, I would like to encrypt "thisisatest12345". The function returns a tab which is the same size of the original tab:

Thes encrypted message is "0x1E 0xDD 0x1B 0x2A 0x8B 0xA6 0xDC 0x5E 0xBE 0xD6 0x9D 0x78 0xA4 0xA9 0xCA 0x3B ". Following the website https://www.devglan.com/online-tools/aes-encryption-decryption, the encypted message should be "1EDD1B2A8BA6DC5EBED69D78A4A9CA3B813290DF65F7ABD59239929768C8603F", which is 64 bytes. But, when I transform the encrypted message into Base 64, I have the same result as the previsous website, but there is a missing part:
From website;

From my code:

The beginning is the same, but a part is missing, and I don't know why.
Can you help me, I don't know how to solve this problem.
Thanks.
