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

FindLocal() public static method

Search all the local machine stores to find a key pair with the specified fingerprint
public static FindLocal ( string UDF ) : KeyPair
UDF string
return KeyPair
        public static KeyPair FindLocal(string UDF) {
            var FindRSA = RSAKeyPair.FindLocal(UDF);
            if (FindRSA != null) {
                return FindRSA;
                }

            return null;
            }