System.Security.Cryptography.Xml.CipherData
Represents the <CipherData> element in XML encryption. This class cannot be inherited.
namespace System.Security.Cryptography.Xml
{
public sealed class CipherData
{
public CipherReference CipherReference { get; set; }
public byte[] CipherValue { get; set; }
public CipherData();
public CipherData(byte[] cipherValue);
public CipherData(CipherReference cipherReference);
public XmlElement GetXml();
public void LoadXml(XmlElement value);
}
}