-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New API for creating AES object in WolfCrypt library #217
Comments
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. |
Hi @dgarske , Should I move this request to WolfSSL repo? When do you think new API will be available? Any ETA? Ildar |
Hi @IldarAbdullin-okta , I have assigned this feature to @aidangarske to work on. Is AES GCM in the C Sharp layer still something you are interested in? Thanks, |
Hi @dgarske , Simplified AES GCM C APIs is something that we would like to use in our C# layer. Thanks for taking this into work, much appreciated! Ildar |
FYI: The AES GCM support has been added in PR wolfSSL/wolfssl#3166. @IldarAbdullin-okta please give it a try and let us know if you have any feedback. |
Hi @IldarAbdullin-okta , Have you had a chance to try the C# wrapper AES GCM support? Let us know if you have any feedback. For now I will go ahead and close this issue. Thanks, |
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: