28 references to HashAlgorithmType
IIS.Tests (2)
TlsHandshakeFeatureTests.cs (2)
42var hashAlgorithm = tlsHandshakeFeature.HashAlgorithm; 43Assert.True(hashAlgorithm >= HashAlgorithmType.None, "HashAlgorithm: " + hashAlgorithm);
InMemory.FunctionalTests (2)
HttpsConnectionMiddlewareTests.cs (2)
152Assert.True(tlsFeature.HashAlgorithm >= HashAlgorithmType.None, "HashAlgorithm"); // May be None on Linux. 188Assert.True(tlsFeature.HashAlgorithm >= HashAlgorithmType.None, "HashAlgorithm"); // May be None on Linux.
Microsoft.AspNetCore.Connections.Abstractions (2)
Features\ITlsHandshakeFeature.cs (2)
46/// Gets the <see cref="HashAlgorithmType"/>. 48HashAlgorithmType HashAlgorithm { get; }
Microsoft.AspNetCore.Server.HttpSys (3)
RequestProcessing\Request.cs (2)
343public HashAlgorithmType HashAlgorithm { get; private set; } 357HashAlgorithm = (HashAlgorithmType)handshake.HashType;
RequestProcessing\RequestContext.FeatureCollection.cs (1)
599HashAlgorithmType ITlsHandshakeFeature.HashAlgorithm => Request.HashAlgorithm;
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (3)
HttpsTests.cs (3)
174var hashAlgorithm = (HashAlgorithmType)result.GetProperty("hashAlgorithm").GetInt32(); 175Assert.True(hashAlgorithm >= HashAlgorithmType.None, "HashAlgorithm: " + hashAlgorithm);
Microsoft.AspNetCore.Server.IIS (3)
Core\IISHttpContext.cs (2)
123public HashAlgorithmType HashAlgorithm { get; private set; } 400HashAlgorithm = (HashAlgorithmType)handshake.HashType;
Core\IISHttpContext.FeatureCollection.cs (1)
416HashAlgorithmType ITlsHandshakeFeature.HashAlgorithm => HashAlgorithm;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
61public HashAlgorithmType HashAlgorithm => _sslStream.HashAlgorithm;
netstandard (1)
netstandard.cs (1)
1832[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.HashAlgorithmType))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
847[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.HashAlgorithmType))]
System.DirectoryServices.Protocols (1)
artifacts\obj\System.DirectoryServices.Protocols\Debug\net10.0\System.DirectoryServices.Protocols.notsupported.cs (1)
676public System.Security.Authentication.HashAlgorithmType Hash { get { throw new System.PlatformNotSupportedException(System.SR.DirectoryServicesProtocols_PlatformNotSupported); } }
System.Net.Security (9)
System\Net\Security\NetEventSource.Security.cs (1)
199HashAlgorithmType hashAlgorithm,
System\Net\Security\SslConnectionInfo.Unix.cs (6)
30new[] { (int)HashAlgorithmType.None, (int)HashAlgorithmType.Md5, (int)HashAlgorithmType.Sha1, (int)HashAlgorithmType.Sha256, (int)HashAlgorithmType.Sha384, (int)HashAlgorithmType.Sha512, };
System\Net\Security\SslStream.cs (2)
604public virtual HashAlgorithmType HashAlgorithm 609return (HashAlgorithmType)_connectionInfo.DataHashAlg;