AFAIK (too many profiles in PCL 2.0) System.Security.dll not included in any portable library profile.
- .NET: part of the framework
- Mono: part of the framework
- MonoTouch: not in profile
- Mono for Android: not in profile
- WinRT: not sure
- Silverlight: not in profile
- MonoGame: not a profile - it will depend on which profile it uses.
the good news is that you can create your own using the Mono source code. For MonoTouch and Mono for Android, this will be pretty easy.
The only problem I can foresee is Silverlight, as it did not (the last time I checked) support for the RSA implementation and Mono BigInteger require unsafe code (which was also unacceptable in most cases). OTOH, and with a little more work, you can reimplement RSA using SL System.Numerics.dll .
source share