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(); 84public bool IsAuthenticated => _isDisposed ? false : _pal.IsAuthenticated; 104public bool IsSigned => _isDisposed ? false : _pal.IsSigned; 109public bool IsEncrypted => _isDisposed ? false : _pal.IsEncrypted; 114public bool IsMutuallyAuthenticated => _isDisposed ? false : _pal.IsMutuallyAuthenticated; 137public string Package => _pal.Package ?? _requestedPackage; 149public string? TargetName => _pal.TargetName; 174_remoteIdentity = identity = _pal.RemoteIdentity; 189public System.Security.Principal.TokenImpersonationLevel ImpersonationLevel => _pal.ImpersonationLevel; 215byte[]? blob = _pal.GetOutgoingBlob(incomingBlob, out statusCode); 297return _pal.Wrap(input, outputWriter, requestEncryption, out isEncrypted); 324return _pal.Unwrap(input, outputWriter, out wasEncrypted); 352return _pal.UnwrapInPlace(input, out unwrappedOffset, out unwrappedLength, out wasEncrypted); 376_pal.GetMIC(message, signatureWriter); 401return _pal.VerifyMIC(message, signature); 408if (_pal.Package == NegotiationInfoClass.Kerberos) 432string? clientSpn = _pal.TargetName;