10 instantiations of SslException
System.Net.Security (10)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (7)
131throw new SslException( 141throw new SslException( 218throw new SslException(SR.Format(SR.net_ssl_encryptionpolicy_notsupported, sslAuthenticationOptions.EncryptionPolicy)); 542handshakeException = new SslException(SR.Format(SR.net_ssl_handshake_failed_error, errorCode), innerError); 610throw new SslException(SR.Format(SR.net_ssl_encrypt_failed, errorCode), GetSslError(retVal, errorCode)); 665throw new SslException(SR.Format(SR.net_ssl_decrypt_failed, errorCode), GetSslError(retVal, errorCode)); 919return new SslException(msg, (int)errorVal);
System\Net\Security\SslStreamPal.Unix.cs (3)
17return status.Exception ?? new Interop.OpenSsl.SslException((int)status.ErrorCode); 113_ => new SecurityStatusPal(SecurityStatusPalErrorCode.InternalError, new Interop.OpenSsl.SslException((int)errorCode)) 277return new SecurityStatusPal(SecurityStatusPalErrorCode.InternalError, new Interop.OpenSsl.SslException((int)code));
1 reference to SslException
System.Net.Security (1)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (1)
913internal static SslException CreateSslException(string message)