You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my C# project I would like to use AES GCM APIs without creating extra native library. In order to use AES APIs directly I need a way how to create Aes object, so ideally I need some wc_AesGcmNew function that creates an object for me
Proposal:
Add new API:
WOLFSSL_API Aes* wc_AesGcmNew();
Function creates and initializes Aes object
After that I can call:
wc_AesGcmSetKey
wc_AesGcmEncrypt
Thank you!
The text was updated successfully, but these errors were encountered:
Hi @IldarAbdullin-okta , should this feature request be filed in the wolfSSL repo? I'd like to see this added to our C# wrapper as well. I started some wolfCrypt C# interfaces in this PR -> wolfSSL/wolfssl#3166 but haven't been able to expand it.
Hello,
In my C# project I would like to use AES GCM APIs without creating extra native library. In order to use AES APIs directly I need a way how to create
Aes
object, so ideally I need somewc_AesGcmNew
function that creates an object for meProposal:
Add new API:
Function creates and initializes Aes object
After that I can call:
wc_AesGcmSetKey
wc_AesGcmEncrypt
Thank you!
The text was updated successfully, but these errors were encountered: