System.Security.Cryptography.CngProperty
Encapsulates a property of a Cryptography Next Generation (CNG) key or provider.
namespace System.Security.Cryptography
{
public struct CngProperty : IEquatable<CngProperty>
{
public string Name { get; }
public CngPropertyOptions Options { get; }
public CngProperty(string name, byte[] value, CngPropertyOptions options);
public bool Equals(CngProperty other);
public byte[] GetValue();
public static bool operator ==(CngProperty left, CngProperty right);
public static bool operator !=(CngProperty left, CngProperty right);
}
}