Topic: AES CTR
Hi,
I'm trying to implement an a bstraction layer for Crypto functionality, when i took a look at the forum to find how to implement
AES-CTR using WolfSSL i saw that the function declaration is bit different fom other Crypto libraries.
after research i can say that the IV parameter can be set to the AES context by:
wc_AesSetIV(Aes* aes, const byte* iv)
but still missing the option to pass the:
* stream block
* offset inside the stream block
can you please or refer to an example in how to use wolfSSL APIs in order to implement AES-CTR
Thanks