Click here to Skip to main content
15,885,953 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I've searched for some time for a PCL implementation of the features provided by the System.Security.Cryptography namespace, and have met with less than satisfactory results. I only truly need DEcryption (both asymmetric and symmetric) in a PCL assembly, as I can handle encryption of the data in a regular .NET assembly on the desktop.

What I have tried:

Is there such a tool available? Or should I look to doing it the hard way and adapt available C/C++ code to C#?
Posted
Updated 1-Dec-16 8:22am

1 solution

Might look at the PCL Crypto library. It's a NuGet package that implements the most common crypto stuff. I can't vouch for it's security as I don't know if it has been through an audit or not but it may work for what you want to do.

From Package Manager Console:
Install-Package PCLCrypto
 
Share this answer
 
Comments
Michael Waters 8-Dec-16 19:04pm    
That's the best option that I have been able to find, but I've had some trouble getting to work.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900