4 overrides of GetOutgoingBlob
System.Net.Security (4)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
264
public override unsafe byte[]?
GetOutgoingBlob
(ReadOnlySpan<byte> incomingBlob, out NegotiateAuthenticationStatusCode statusCode)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
97
public override unsafe byte[]?
GetOutgoingBlob
(ReadOnlySpan<byte> incomingBlob, out NegotiateAuthenticationStatusCode statusCode)
System\Net\NegotiateAuthenticationPal.Unix.cs (1)
267
public override byte[]?
GetOutgoingBlob
(ReadOnlySpan<byte> incomingBlob, out NegotiateAuthenticationStatusCode statusCode)
System\Net\NegotiateAuthenticationPal.Unsupported.cs (1)
46
public override byte[]?
GetOutgoingBlob
(ReadOnlySpan<byte> incomingBlob, out NegotiateAuthenticationStatusCode statusCode)
3 references to GetOutgoingBlob
System.Net.Security (3)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (2)
178
mechBlob = _optimisticMechanism.
GetOutgoingBlob
(incomingBlob, out statusCode);
324
byte[]? response = _mechanism.
GetOutgoingBlob
(blob, out statusCode);
System\Net\Security\NegotiateAuthentication.cs (1)
215
byte[]? blob = _pal.
GetOutgoingBlob
(incomingBlob, out statusCode);