Hi, support,
Im receiving by BLE an encrypted data using the algorithm AES CBC.
For that reason, I have to decrypt using your driver AESCCM.
But your AESCCM only use initialization vector with a max length of 13 bytes ("Length of nonce in bytes. Valid nonce lengths are [7, 8, ... 13]")
The libraries in android and IOS that allow working with this algorithm only work with 16 bytes, you can write 13 bytes but they filled with 0x00 hex the rest 3 bytes. Also, the tools online work in the same way.
So my question Is there a workaround to deal with this situation where I can decrypt the algorithm AES CBC with IV = 16 bytes?
Am I missing something here?
Best Regards and thanks for your time