System.Security.Cryptography.HashAlgorithmName
namespace System.Security.Cryptography
{
public struct HashAlgorithmName : IEquatable<HashAlgorithmName>
{
public static HashAlgorithmName MD5 { get; }
public string Name { get; }
public static HashAlgorithmName SHA1 { get; }
public static HashAlgorithmName SHA256 { get; }
public static HashAlgorithmName SHA384 { get; }
public static HashAlgorithmName SHA512 { get; }
public HashAlgorithmName(string name);
public bool Equals(HashAlgorithmName other);
public static bool operator ==(HashAlgorithmName left, HashAlgorithmName right);
public static bool operator !=(HashAlgorithmName left, HashAlgorithmName right);
}
}