I currently am developing an app for Windows 10 and have come across a problem.
I am using JS and HTML for the UI and was hoping on using C# for code behind. From the limited documentation of this platform, my understanding is that I must use a Windows Runtime Component which then will get referenced by the JS project so that I can call the managed code from it. I then also need to create a Universal Class Library that the Runtime Component will reference.
The problem that I am having is that the code I am using relies somewhat heavily on a library that uses System.Security.Cryptography extensively and from what I gather the UWP and .NET Core or whatever only has Windows.Security.Cryptography.Core which is an extremely fleshed out version that is included in the .NET Framework.
My question is, is it possible at all to somehow include call and use System.Security.Cryptography in my app? Or will I have to find some kind of workaround such that it will work for UWP?