I have a project where I decrypt an encrypted message using Ed25519 signing https://cryptography.io/en/latest/hazmat/primitives/asymmetric/ed25519/
I used https://github.com/ektrah/libsodium-core/releases/tag/v1.2.3 nuget package for a Xamarin.Forms project for iOS and Android and the signature verfication code works.
Changing the encryption algorithm is not what I am looking for.
When upgrading to .NET MAUI the code reached an exception of DLLs not found and I cannot find a solution to it.
From https://github.com/ektrah/libsodium-core/issues/80, the author of the package has removed the support for iOS and Android from 1.3.0 upwards.
I tried look into some other alternatives https://doc.libsodium.org/bindings_for_other_languages but none of them supported iOS / Android version of it.
Is there another nuget package for .NET MAUI that can decrypt (or verify the signature) for encrypted Ed25519 messages?
Eugene Trinh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.