5 instantiations of CngAlgorithmGroup
System.Security.Cryptography (5)
System\Security\Cryptography\CngAlgorithmGroup.cs (5)
93
return s_dh ??= new
CngAlgorithmGroup
("DH"); // NCRYPT_DH_ALGORITHM_GROUP
101
return s_dsa ??= new
CngAlgorithmGroup
("DSA"); // NCRYPT_DSA_ALGORITHM_GROUP
109
return s_ecdh ??= new
CngAlgorithmGroup
("ECDH"); // NCRYPT_ECDH_ALGORITHM_GROUP
117
return s_ecdsa ??= new
CngAlgorithmGroup
("ECDSA"); // NCRYPT_ECDSA_ALGORITHM_GROUP
125
return s_rsa ??= new
CngAlgorithmGroup
("RSA"); // NCRYPT_RSA_ALGORITHM_GROUP
20 references to CngAlgorithmGroup
System.Core (1)
System.Core.cs (1)
201
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.
CngAlgorithmGroup
))]
System.Security.Cryptography (18)
System\Security\Cryptography\Cng.NotSupported.cs (1)
105
public
CngAlgorithmGroup
? AlgorithmGroup => null;
System\Security\Cryptography\CngAlgorithmGroup.cs (17)
17
public sealed class CngAlgorithmGroup : IEquatable<
CngAlgorithmGroup
>
36
public static bool operator ==(
CngAlgorithmGroup
? left,
CngAlgorithmGroup
? right)
46
public static bool operator !=(
CngAlgorithmGroup
? left,
CngAlgorithmGroup
? right)
60
return Equals(obj as
CngAlgorithmGroup
);
63
public bool Equals([NotNullWhen(true)]
CngAlgorithmGroup
? other)
89
public static
CngAlgorithmGroup
DiffieHellman
97
public static
CngAlgorithmGroup
Dsa
105
public static
CngAlgorithmGroup
ECDiffieHellman
113
public static
CngAlgorithmGroup
ECDsa
121
public static
CngAlgorithmGroup
Rsa
129
private static
CngAlgorithmGroup
? s_dh;
130
private static
CngAlgorithmGroup
? s_dsa;
131
private static
CngAlgorithmGroup
? s_ecdh;
132
private static
CngAlgorithmGroup
? s_ecdsa;
133
private static
CngAlgorithmGroup
? s_rsa;
System.Security.Cryptography.Cng (1)
System.Security.Cryptography.Cng.cs (1)
10
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.
CngAlgorithmGroup
))]