Is encryption in C# cross platform in mono? -


are security encryption classes in .net useable on mono run times? (in particular monogame implementations use mono run time on mac etc.)

i interested in if can use [aes] (https://msdn.microsoft.com/en-us/library/system.security.cryptography.aes(v=vs.110).aspx) class because have used before.

would able encrypt strings (such config data) obfuscate , save file , later decrypt in program.

yes ... can use these classes on mono-backed platforms such macos :)

https://developer.xamarin.com/api/type/system.security.cryptography.aes/

edit: @zaph makes excellent point in comments ... there libraries, such pclcrypto use native libraries on each platform reason :)


Comments