System.Security.Cryptography.AsymmetricKeyExchangeDeformatter
namespace System.Security.Cryptography
{
public abstract class AsymmetricKeyExchangeDeformatter
{
public abstract string Parameters { get; set; }
protected AsymmetricKeyExchangeDeformatter();
public abstract byte[] DecryptKeyExchange(byte[] rgb);
public abstract void SetKey(AsymmetricAlgorithm key);
}
}