System.Security.Cryptography.CngAlgorithmGroup
Encapsulates the name of an encryption algorithm group.
namespace System.Security.Cryptography
{
public sealed class CngAlgorithmGroup : IEquatable<CngAlgorithmGroup>
{
public string AlgorithmGroup { get; }
public static CngAlgorithmGroup DiffieHellman { get; }
public static CngAlgorithmGroup Dsa { get; }
public static CngAlgorithmGroup ECDiffieHellman { get; }
public static CngAlgorithmGroup ECDsa { get; }
public static CngAlgorithmGroup Rsa { get; }
public CngAlgorithmGroup(string algorithmGroup);
public bool Equals(CngAlgorithmGroup other);
public static bool operator ==(CngAlgorithmGroup left, CngAlgorithmGroup right);
public static bool operator !=(CngAlgorithmGroup left, CngAlgorithmGroup right);
}
}