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(); 97public bool IsAuthenticated => _isDisposed ? false : _pal.IsAuthenticated; 117public bool IsSigned => _isDisposed ? false : _pal.IsSigned; 122public bool IsEncrypted => _isDisposed ? false : _pal.IsEncrypted; 130_pal.IsMutuallyAuthenticated; 153public string Package => _pal.Package ?? _requestedPackage; 165public string? TargetName => _pal.TargetName; 190_remoteIdentity = identity = _pal.RemoteIdentity; 205public System.Security.Principal.TokenImpersonationLevel ImpersonationLevel => _pal.ImpersonationLevel; 231byte[]? blob = _pal.GetOutgoingBlob(incomingBlob, out statusCode); 336return _pal.Wrap(input, outputWriter, requestEncryption, out isEncrypted); 363return _pal.Unwrap(input, outputWriter, out wasEncrypted); 391return _pal.UnwrapInPlace(input, out unwrappedOffset, out unwrappedLength, out wasEncrypted); 415_pal.GetMIC(message, signatureWriter); 440return _pal.VerifyMIC(message, signature); 447if (_pal.Package == NegotiationInfoClass.Kerberos) 471string? clientSpn = _pal.TargetName;