4 overrides of UnwrapInPlace
System.Net.Security (4)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
807
public override NegotiateAuthenticationStatusCode
UnwrapInPlace
(Span<byte> input, out int unwrappedOffset, out int unwrappedLength, out bool wasEncrypted)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
424
public override NegotiateAuthenticationStatusCode
UnwrapInPlace
(Span<byte> input, out int unwrappedOffset, out int unwrappedLength, out bool wasEncrypted)
System\Net\NegotiateAuthenticationPal.Unix.cs (1)
391
public override unsafe NegotiateAuthenticationStatusCode
UnwrapInPlace
(Span<byte> input, out int unwrappedOffset, out int unwrappedLength, out bool wasEncrypted)
System\Net\NegotiateAuthenticationPal.Unsupported.cs (1)
54
public override NegotiateAuthenticationStatusCode
UnwrapInPlace
(Span<byte> input, out int unwrappedOffset, out int unwrappedLength, out bool wasEncrypted) => throw new InvalidOperationException();
2 references to UnwrapInPlace
System.Net.Security (2)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
431
return _mechanism.
UnwrapInPlace
(input, out unwrappedOffset, out unwrappedLength, out wasEncrypted);
System\Net\Security\NegotiateAuthentication.cs (1)
352
return _pal.
UnwrapInPlace
(input, out unwrappedOffset, out unwrappedLength, out wasEncrypted);