AAS Xamarin Cross Platform

Is there any library that can be used PCL

to target iOS, Android and Windows Phone 8 using Xamarin

to implement AES 256

encryption.

+3


source to share


2 answers


In .NET Standard 1.3 you can now do encryption / decryption and hashing https://xamarinhelp.com/cryptography-in-xamarin-forms/



+3


source


Take a look at the link.

The author has the same problem and came up with these alternatives:



It also provides another workaround;

Another approach is to use some kind of dependency injection with platform specific code in each platform library and use it in general projects. Xamarin Forms provide a minimal DependencyService. The only problem here is writing platform specific code and is time consuming.

For more information on DependencyService, visit the Xamarin .

+2


source







All Articles