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

FindLocal() public method

Locate the private key in the local key store.
public FindLocal ( string UDF ) : bool
UDF string Fingerprint of key to locate.
return bool
        public override bool FindLocal(string UDF) {
            _RSAKeyPair = new RSAKeyPair(UDF);
            return _RSAKeyPair.Provider != null;
            }