58 references to SecurityStatusPalErrorCode
System.Net.Security (58)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (7)
509
return new SecurityStatusPal(
SecurityStatusPalErrorCode
.InternalError, GetSslError(ret, errorCode));
511
return new SecurityStatusPal(
SecurityStatusPalErrorCode
.OK);
514
internal static
SecurityStatusPalErrorCode
DoSslHandshake(SafeSslHandle context, ReadOnlySpan<byte> input, ref ProtocolToken token)
533
return
SecurityStatusPalErrorCode
.CredentialsNeeded;
583
return
SecurityStatusPalErrorCode
.ContinueNeeded;
592
return stateOk ?
SecurityStatusPalErrorCode
.OK :
SecurityStatusPalErrorCode
.ContinueNeeded;
System\Net\Security\NegotiateStream.cs (1)
936
(int)
SecurityStatusPalErrorCode
.LogonDenied => new InvalidCredentialException(SR.net_auth_bad_client_creds, e),
System\Net\Security\SslStream.IO.cs (15)
97
token.Status = new SecurityStatusPal(
SecurityStatusPalErrorCode
.TryAgain);
236
if (token.Status.ErrorCode !=
SecurityStatusPalErrorCode
.OK)
238
if (token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.NoRenegotiation)
259
while (token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.ContinueNeeded);
319
else if (token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.OK)
364
token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.IllegalMessage)
372
else if (token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.OK)
631
if (token.Status.ErrorCode !=
SecurityStatusPalErrorCode
.TryAgain)
652
if (token.Status.ErrorCode !=
SecurityStatusPalErrorCode
.OK)
678
if (token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.TryAgain)
684
else if (token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.OK)
791
if (status.ErrorCode ==
SecurityStatusPalErrorCode
.Renegotiate)
871
if (status.ErrorCode !=
SecurityStatusPalErrorCode
.OK)
885
if (status.ErrorCode ==
SecurityStatusPalErrorCode
.Renegotiate)
894
else if (status.ErrorCode ==
SecurityStatusPalErrorCode
.ContextExpired)
System\Net\Security\SslStream.Protocol.cs (12)
883
if (token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.HandshakeStarted)
891
if (token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.OK)
913
if (token.Status.ErrorCode ==
SecurityStatusPalErrorCode
.CredentialsNeeded)
1011
if (token.Status.ErrorCode !=
SecurityStatusPalErrorCode
.OK)
1022
if (NetEventSource.Log.IsEnabled() && status.ErrorCode ==
SecurityStatusPalErrorCode
.OK)
1185
if (status.ErrorCode !=
SecurityStatusPalErrorCode
.OK)
1204
if (status.ErrorCode !=
SecurityStatusPalErrorCode
.OK)
1336
return ((Status.ErrorCode !=
SecurityStatusPalErrorCode
.OK) && (Status.ErrorCode !=
SecurityStatusPalErrorCode
.ContinueNeeded));
1344
return (Status.ErrorCode ==
SecurityStatusPalErrorCode
.OK);
1352
return (Status.ErrorCode ==
SecurityStatusPalErrorCode
.Renegotiate);
1360
return (Status.ErrorCode ==
SecurityStatusPalErrorCode
.ContextExpired);
System\Net\Security\SslStreamPal.Unix.cs (21)
74
token.Status = new SecurityStatusPal(
SecurityStatusPalErrorCode
.InternalError, ex);
91
if (retVal.ErrorCode ==
SecurityStatusPalErrorCode
.OK ||
92
retVal.ErrorCode ==
SecurityStatusPalErrorCode
.Renegotiate)
101
return new SecurityStatusPal(
SecurityStatusPalErrorCode
.InternalError, ex);
108
Interop.Ssl.SslErrorCode.SSL_ERROR_RENEGOTIATE => new SecurityStatusPal(
SecurityStatusPalErrorCode
.Renegotiate),
109
Interop.Ssl.SslErrorCode.SSL_ERROR_ZERO_RETURN => new SecurityStatusPal(
SecurityStatusPalErrorCode
.ContextExpired),
110
Interop.Ssl.SslErrorCode.SSL_ERROR_WANT_X509_LOOKUP => new SecurityStatusPal(
SecurityStatusPalErrorCode
.CredentialsNeeded),
112
Interop.Ssl.SslErrorCode.SSL_ERROR_WANT_READ => new SecurityStatusPal(
SecurityStatusPalErrorCode
.OK),
113
_ => new SecurityStatusPal(
SecurityStatusPalErrorCode
.InternalError, new Interop.OpenSsl.SslException((int)errorCode))
146
if (status.ErrorCode !=
SecurityStatusPalErrorCode
.OK)
187
SecurityStatusPalErrorCode
errorCode = Interop.OpenSsl.DoSslHandshake((SafeSslHandle)context, inputBuffer, ref token);
190
if (errorCode ==
SecurityStatusPalErrorCode
.CredentialsNeeded)
201
token.Status = new SecurityStatusPal(
SecurityStatusPalErrorCode
.CredentialsNeeded);
222
if (errorCode ==
SecurityStatusPalErrorCode
.OK && sslAuthenticationOptions.IsServer
226
token.Status = new SecurityStatusPal(
SecurityStatusPalErrorCode
.InternalError, Interop.OpenSsl.CreateSslException(SR.net_alpn_failed));
234
token.Status = new SecurityStatusPal(
SecurityStatusPalErrorCode
.InternalError, exc);
245
return new SecurityStatusPal(
SecurityStatusPalErrorCode
.OK);
262
return new SecurityStatusPal(
SecurityStatusPalErrorCode
.OK);
268
return new SecurityStatusPal(
SecurityStatusPalErrorCode
.OK);
273
return new SecurityStatusPal(
SecurityStatusPalErrorCode
.InternalError, Interop.Crypto.CreateOpenSslCryptographicException());
277
return new SecurityStatusPal(
SecurityStatusPalErrorCode
.InternalError, new Interop.OpenSsl.SslException((int)code));
System\Net\SecurityStatusPal.cs (2)
8
public readonly
SecurityStatusPalErrorCode
ErrorCode;
11
public SecurityStatusPal(
SecurityStatusPalErrorCode
errorCode, Exception? exception = null)