12 references to NTLM
System.Net.Security (12)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (2)
283public override string Package => NegotiationInfoClass.NTLM; 300Debug.Assert(clientOptions.Package == NegotiationInfoClass.NTLM);
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (2)
137yield return new KeyValuePair<string, string>(NegotiationInfoClass.NTLM, NtlmOid); 285NtlmOid => NegotiationInfoClass.NTLM,
System\Net\NegotiateAuthenticationPal.Unix.cs (5)
31case NegotiationInfoClass.NTLM: 157(_contextFlags & Interop.NetSecurityNative.GssFlags.GSS_C_DELEG_FLAG) != 0 && Package != NegotiationInfoClass.NTLM ? TokenImpersonationLevel.Delegation : 461else if (string.Equals(package, NegotiationInfoClass.NTLM, StringComparison.OrdinalIgnoreCase)) 649_package = isNtlmUsed ? NegotiationInfoClass.NTLM : NegotiationInfoClass.Kerberos; 721_package = isNtlmUsed ? NegotiationInfoClass.NTLM : NegotiationInfoClass.Kerberos;
System\Net\Security\NegotiateStream.cs (3)
226!string.Equals(_context.Package, NegotiationInfoClass.NTLM) && // suppressing for NTLM since SSPI does not return correct value in the context flags. 673package = NegotiationInfoClass.NTLM; 796isNtlm = string.Equals(_context.Package, NegotiationInfoClass.NTLM);