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