1 write to Name
System.Security.Cryptography (1)
src\libraries\Common\src\System\Security\Cryptography\MLKemAlgorithm.cs (1)
24
Name
= name;
9 references to Name
System.Security.Cryptography (9)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EVP.KemAlgs.cs (3)
26
MlKem512 = EvpKemAvailable(MLKemAlgorithm.MLKem512.
Name
);
27
MlKem768 = EvpKemAvailable(MLKemAlgorithm.MLKem768.
Name
);
28
MlKem1024 = EvpKemAvailable(MLKemAlgorithm.MLKem1024.
Name
);
src\libraries\Common\src\System\Security\Cryptography\MLKemAlgorithm.cs (6)
121
public bool Equals([NotNullWhen(true)] MLKemAlgorithm? other) => other is not null && other.
Name
==
Name
;
124
public override bool Equals([NotNullWhen(true)] object? obj) => obj is MLKemAlgorithm alg && alg.
Name
==
Name
;
127
public override int GetHashCode() =>
Name
.GetHashCode();
130
public override string ToString() =>
Name
;