10 instantiations of SslException
System.Net.Security (10)
src\runtime\src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (7)
172throw new SslException( 182throw new SslException( 239throw new SslException(SR.Format(SR.net_ssl_encryptionpolicy_notsupported, sslAuthenticationOptions.EncryptionPolicy)); 782handshakeException = new SslException(SR.Format(SR.net_ssl_handshake_failed_error, errorCode), innerError); 874throw new SslException(SR.Format(SR.net_ssl_encrypt_failed, errorCode), GetSslError(retVal, errorCode)); 991throw new SslException(SR.Format(SR.net_ssl_decrypt_failed, errorCode), GetSslError(retVal, errorCode)); 1427return new SslException(msg, (int)errorVal);
System\Net\Security\SslStreamPal.Unix.cs (3)
17return status.Exception ?? new Interop.OpenSsl.SslException((int)status.ErrorCode); 127_ => new SecurityStatusPal(SecurityStatusPalErrorCode.InternalError, new Interop.OpenSsl.SslException((int)errorCode)) 283return new SecurityStatusPal(SecurityStatusPalErrorCode.InternalError, new Interop.OpenSsl.SslException((int)code));
1 reference to SslException
System.Net.Security (1)
src\runtime\src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (1)
1421internal static unsafe SslException CreateSslException(string message)