Goedel.Cryptography.CryptoProviderExchange.Decrypt C# (CSharp) Method

Decrypt() public method

Decrypt data. Note that this is only possibly when the corresponding private key is available on the local machine.
public Decrypt ( CryptoData Input ) : CryptoData
Input CryptoData The data to decrypt.
return CryptoData
        public CryptoData Decrypt(CryptoData Input) {
            var Result = Decrypt(Input.Data);
            return new CryptoData(CryptoAlgorithmID, OID, null, null, Result, null);
            }

Same methods

CryptoProviderExchange::Decrypt ( byte Input ) : byte[]
CryptoProviderExchange