2 writes to _pal
System.Net.Security (2)
System\Net\Security\NegotiateAuthentication.cs (2)
42
_pal
= NegotiateAuthenticationPal.Create(clientOptions);
60
_pal
= NegotiateAuthenticationPal.Create(serverOptions);
17 references to _pal
System.Net.Security (17)
System\Net\Security\NegotiateAuthentication.cs (17)
72
_pal
?.Dispose();
84
public bool IsAuthenticated => _isDisposed ? false :
_pal
.IsAuthenticated;
104
public bool IsSigned => _isDisposed ? false :
_pal
.IsSigned;
109
public bool IsEncrypted => _isDisposed ? false :
_pal
.IsEncrypted;
114
public bool IsMutuallyAuthenticated => _isDisposed ? false :
_pal
.IsMutuallyAuthenticated;
137
public string Package =>
_pal
.Package ?? _requestedPackage;
149
public string? TargetName =>
_pal
.TargetName;
174
_remoteIdentity = identity =
_pal
.RemoteIdentity;
189
public System.Security.Principal.TokenImpersonationLevel ImpersonationLevel =>
_pal
.ImpersonationLevel;
215
byte[]? blob =
_pal
.GetOutgoingBlob(incomingBlob, out statusCode);
297
return
_pal
.Wrap(input, outputWriter, requestEncryption, out isEncrypted);
324
return
_pal
.Unwrap(input, outputWriter, out wasEncrypted);
352
return
_pal
.UnwrapInPlace(input, out unwrappedOffset, out unwrappedLength, out wasEncrypted);
376
_pal
.GetMIC(message, signatureWriter);
401
return
_pal
.VerifyMIC(message, signature);
408
if (
_pal
.Package == NegotiationInfoClass.Kerberos)
432
string? clientSpn =
_pal
.TargetName;