2 writes to _pal
System.Net.Security (2)
System\Net\Security\NegotiateAuthentication.cs (2)
42
_pal
= NegotiateAuthenticationPal.Create(clientOptions);
66
_pal
= NegotiateAuthenticationPal.Create(serverOptions);
17 references to _pal
System.Net.Security (17)
System\Net\Security\NegotiateAuthentication.cs (17)
78
_pal
?.Dispose();
90
public bool IsAuthenticated => _isDisposed ? false :
_pal
.IsAuthenticated;
110
public bool IsSigned => _isDisposed ? false :
_pal
.IsSigned;
115
public bool IsEncrypted => _isDisposed ? false :
_pal
.IsEncrypted;
120
public bool IsMutuallyAuthenticated => _isDisposed ? false :
_pal
.IsMutuallyAuthenticated;
143
public string Package =>
_pal
.Package ?? _requestedPackage;
155
public string? TargetName =>
_pal
.TargetName;
180
_remoteIdentity = identity =
_pal
.RemoteIdentity;
195
public System.Security.Principal.TokenImpersonationLevel ImpersonationLevel =>
_pal
.ImpersonationLevel;
221
byte[]? blob =
_pal
.GetOutgoingBlob(incomingBlob, out statusCode);
322
return
_pal
.Wrap(input, outputWriter, requestEncryption, out isEncrypted);
349
return
_pal
.Unwrap(input, outputWriter, out wasEncrypted);
377
return
_pal
.UnwrapInPlace(input, out unwrappedOffset, out unwrappedLength, out wasEncrypted);
401
_pal
.GetMIC(message, signatureWriter);
426
return
_pal
.VerifyMIC(message, signature);
433
if (
_pal
.Package == NegotiationInfoClass.Kerberos)
457
string? clientSpn =
_pal
.TargetName;