2 writes to _pal
System.Net.Security (2)
System\Net\Security\NegotiateAuthentication.cs (2)
49
_pal
= NegotiateAuthenticationPal.Create(clientOptions);
73
_pal
= NegotiateAuthenticationPal.Create(serverOptions);
17 references to _pal
System.Net.Security (17)
System\Net\Security\NegotiateAuthentication.cs (17)
85
_pal
?.Dispose();
97
public bool IsAuthenticated => _isDisposed ? false :
_pal
.IsAuthenticated;
117
public bool IsSigned => _isDisposed ? false :
_pal
.IsSigned;
122
public bool IsEncrypted => _isDisposed ? false :
_pal
.IsEncrypted;
130
_pal
.IsMutuallyAuthenticated;
153
public string Package =>
_pal
.Package ?? _requestedPackage;
165
public string? TargetName =>
_pal
.TargetName;
190
_remoteIdentity = identity =
_pal
.RemoteIdentity;
205
public System.Security.Principal.TokenImpersonationLevel ImpersonationLevel =>
_pal
.ImpersonationLevel;
231
byte[]? blob =
_pal
.GetOutgoingBlob(incomingBlob, out statusCode);
336
return
_pal
.Wrap(input, outputWriter, requestEncryption, out isEncrypted);
363
return
_pal
.Unwrap(input, outputWriter, out wasEncrypted);
391
return
_pal
.UnwrapInPlace(input, out unwrappedOffset, out unwrappedLength, out wasEncrypted);
415
_pal
.GetMIC(message, signatureWriter);
440
return
_pal
.VerifyMIC(message, signature);
447
if (
_pal
.Package == NegotiationInfoClass.Kerberos)
471
string? clientSpn =
_pal
.TargetName;