Goedel.Cryptography.RSAKeyPair.PlatformLocateRSAProvider C# (CSharp) Method

PlatformLocateRSAProvider() static private method

Locate a key stored in the platform cryptographic key store.
static private PlatformLocateRSAProvider ( string UDF ) : RSACryptoServiceProvider
UDF string
return System.Security.Cryptography.RSACryptoServiceProvider
        static RSACryptoServiceProvider PlatformLocateRSAProvider(string UDF) {
            var Parameters = new CspParameters();
            Parameters.KeyContainerName = ContainerName(UDF);
            return new RSACryptoServiceProvider(Parameters);
            }