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

FindLocal() public static method

Find a KeyPair with the specified container fingerprint in the local key store.
public static FindLocal ( string UDF ) : RSAKeyPair
UDF string Fingerprint of key.
return RSAKeyPair
        public static new RSAKeyPair FindLocal(string UDF) {
            var Provider = PlatformLocateRSAProvider(UDF);
            if (Provider == null) return null;
            return new RSAKeyPair(Provider);
            }