Home
last modified time | relevance | path

Searched refs:SSLError (Results 1 – 25 of 1201) sorted by relevance

12345678910>>...49

/dports/devel/folly/folly-2021.12.27.00/folly/io/async/ssl/
H A DSSLErrors.cpp49 case SSLError::CLIENT_RENEGOTIATION: in getSSLErrorString()
55 case SSLError::EARLY_WRITE: in getSSLErrorString()
58 case SSLError::SSL_ERROR: in getSSLErrorString()
61 case SSLError::NETWORK_ERROR: in getSSLErrorString()
64 case SSLError::EOF_ERROR: in getSSLErrorString()
89 case SSLError::EOF_ERROR: in exTypefromSSLErr()
91 case SSLError::NETWORK_ERROR: in exTypefromSSLErr()
95 case SSLError::EARLY_WRITE: in exTypefromSSLErr()
96 case SSLError::SSL_ERROR: in exTypefromSSLErr()
116 sslError = SSLError::EOF_ERROR; in SSLException()
[all …]
H A DSSLErrors.h23 enum class SSLError { enum
40 explicit SSLException(SSLError error);
42 SSLError getSSLError() const { return sslError; } in getSSLError()
45 SSLError sslError;
/dports/security/wolfssl/wolfssl-5.1.0/wrapper/python/wolfssl/src/wolfssl/
H A Dexceptions.py30 class SSLError(socket_error): class
41 class SSLZeroReturnError(SSLError):
50 class SSLWantReadError(SSLError):
59 class SSLWantWriteError(SSLError):
68 class SSLSyscallError(SSLError):
77 class SSLEOFError(SSLError):
/dports/databases/mariadb105-client/mariadb-10.5.15/extra/wolfssl/wolfssl/wrapper/python/wolfssl/src/wolfssl/
H A Dexceptions.py30 class SSLError(socket_error): class
41 class SSLZeroReturnError(SSLError):
50 class SSLWantReadError(SSLError):
59 class SSLWantWriteError(SSLError):
68 class SSLSyscallError(SSLError):
77 class SSLEOFError(SSLError):
/dports/databases/mariadb104-server/mariadb-10.4.24/extra/wolfssl/wolfssl/wrapper/python/wolfssl/src/wolfssl/
H A Dexceptions.py30 class SSLError(socket_error): class
41 class SSLZeroReturnError(SSLError):
50 class SSLWantReadError(SSLError):
59 class SSLWantWriteError(SSLError):
68 class SSLSyscallError(SSLError):
77 class SSLEOFError(SSLError):
/dports/databases/mariadb104-client/mariadb-10.4.24/extra/wolfssl/wolfssl/wrapper/python/wolfssl/src/wolfssl/
H A Dexceptions.py30 class SSLError(socket_error): class
41 class SSLZeroReturnError(SSLError):
50 class SSLWantReadError(SSLError):
59 class SSLWantWriteError(SSLError):
68 class SSLSyscallError(SSLError):
77 class SSLEOFError(SSLError):
/dports/databases/mariadb105-server/mariadb-10.5.15/extra/wolfssl/wolfssl/wrapper/python/wolfssl/src/wolfssl/
H A Dexceptions.py30 class SSLError(socket_error): class
41 class SSLZeroReturnError(SSLError):
50 class SSLWantReadError(SSLError):
59 class SSLWantWriteError(SSLError):
68 class SSLSyscallError(SSLError):
77 class SSLEOFError(SSLError):
/dports/devel/folly/folly-2021.12.27.00/folly/io/async/test/
H A DAsyncSocketExceptionTest.cpp85 SSLException eof(SSLError::EOF_ERROR); in TEST()
88 SSLException net(SSLError::NETWORK_ERROR); in TEST()
91 std::array<SSLError, 4> errs{ in TEST()
92 {SSLError::CLIENT_RENEGOTIATION, in TEST()
93 SSLError::INVALID_RENEGOTIATION, in TEST()
94 SSLError::EARLY_WRITE, in TEST()
95 SSLError::SSL_ERROR}}; in TEST()
/dports/www/trafficserver/trafficserver-9.1.1/iocore/net/
H A DSSLClientUtils.cc169 SSLError("cannot create new client context");
176 SSLError("invalid client cipher suite in %s", ts::filename::RECORDS);
184 SSLError("invalid tls client cipher suites in %s", ts::filename::RECORDS);
197 SSLError("invalid groups list for client in %s", ts::filename::RECORDS);
234 SSLError("SSLCreateClientContext(): failed to load client certificate.");
243 SSLError("SSLCreateClientContext(): failed to load client private key.");
248 SSLError("SSLCreateClientContext(): client private key does not match client certificate.");
254 SSLError("SSLCreateClientContext(): Invalid client CA cert file/CA path.");
258 SSLError("SSLCreateClientContext(): failed to set the default verify paths.");
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/urllib3/util/
H A Dssl_.py11 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
126 raise SSLError("CA directories not supported in older Pythons")
129 raise SSLError("CA data not supported in older Pythons")
169 raise SSLError("Fingerprint of invalid length: {0}".format(fingerprint))
177 raise SSLError(
350 raise SSLError(e)
355 raise SSLError(e)
366 raise SSLError("Client private key is encrypted, password is required")
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/urllib3/urllib3/util/
H A Dssl_.py11 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
126 raise SSLError("CA directories not supported in older Pythons")
129 raise SSLError("CA data not supported in older Pythons")
169 raise SSLError("Fingerprint of invalid length: {0}".format(fingerprint))
177 raise SSLError(
345 raise SSLError(e)
350 raise SSLError(e)
361 raise SSLError("Client private key is encrypted, password is required")
/dports/www/firefox-esr/firefox-91.8.0/third_party/python/urllib3/urllib3/util/
H A Dssl_.py11 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
126 raise SSLError("CA directories not supported in older Pythons")
129 raise SSLError("CA data not supported in older Pythons")
169 raise SSLError("Fingerprint of invalid length: {0}".format(fingerprint))
177 raise SSLError(
345 raise SSLError(e)
350 raise SSLError(e)
361 raise SSLError("Client private key is encrypted, password is required")
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/urllib3/src/urllib3/util/
H A Dssl_.py11 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
126 raise SSLError("CA directories not supported in older Pythons")
129 raise SSLError("CA data not supported in older Pythons")
169 raise SSLError("Fingerprint of invalid length: {0}".format(fingerprint))
177 raise SSLError(
345 raise SSLError(e)
350 raise SSLError(e)
361 raise SSLError("Client private key is encrypted, password is required")
/dports/lang/spidermonkey78/firefox-78.9.0/obj-x86_64-pc-linux-gnu/_virtualenvs/init/lib/python2.7/site-packages/pip/_vendor/urllib3/util/
H A Dssl_.py11 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
126 raise SSLError("CA directories not supported in older Pythons")
129 raise SSLError("CA data not supported in older Pythons")
169 raise SSLError("Fingerprint of invalid length: {0}".format(fingerprint))
177 raise SSLError(
345 raise SSLError(e)
350 raise SSLError(e)
361 raise SSLError("Client private key is encrypted, password is required")
/dports/devel/py-gevent/gevent-21.8.0/src/gevent/
H A D_ssl2.py111 except SSLError as ex:
134 except SSLError as ex:
171 except SSLError as x:
197 raise SSLError(SSL_ERROR_WANT_WRITE)
199 raise SSLError(*ex.args)
233 except SSLError as x:
265 except SSLError as ex:
315 except SSLError as ex:
398 _SSLErrorReadTimeout = SSLError('The read operation timed out')
399 _SSLErrorWriteTimeout = SSLError('The write operation timed out')
[all …]
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/urllib3/util/
H A Dssl_.py10 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
136 raise SSLError("CA directories not supported in older Pythons")
176 raise SSLError(
185 raise SSLError('Fingerprints did not match. Expected "{0}", got "{1}".'
324 raise SSLError(e)
329 raise SSLError(e)
340 raise SSLError("Client private key is encrypted, password is required")
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/pip/_vendor/urllib3/util/
H A Dssl_.py10 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
136 raise SSLError("CA directories not supported in older Pythons")
176 raise SSLError(
185 raise SSLError('Fingerprints did not match. Expected "{0}", got "{1}".'
324 raise SSLError(e)
329 raise SSLError(e)
340 raise SSLError("Client private key is encrypted, password is required")
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/swarming_client/third_party/urllib3/util/
H A Dssl_.py11 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
126 raise SSLError("CA directories not supported in older Pythons")
166 raise SSLError("Fingerprint of invalid length: {0}".format(fingerprint))
174 raise SSLError(
338 raise SSLError(e)
343 raise SSLError(e)
354 raise SSLError("Client private key is encrypted, password is required")
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/urllib3/urllib3/util/
H A Dssl_.py10 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
136 raise SSLError("CA directories not supported in older Pythons")
176 raise SSLError(
185 raise SSLError('Fingerprints did not match. Expected "{0}", got "{1}".'
324 raise SSLError(e)
329 raise SSLError(e)
340 raise SSLError("Client private key is encrypted, password is required")
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/patched/notpip/_vendor/urllib3/util/
H A Dssl_.py11 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
126 raise SSLError("CA directories not supported in older Pythons")
166 raise SSLError("Fingerprint of invalid length: {0}".format(fingerprint))
174 raise SSLError(
338 raise SSLError(e)
343 raise SSLError(e)
354 raise SSLError("Client private key is encrypted, password is required")
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/python/requests/requests/packages/urllib3/util/
H A Dssl_.py9 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
102 raise SSLError("CA directories not supported in older Pythons")
149 raise SSLError(
158 raise SSLError('Fingerprints did not match. Expected "{0}", got "{1}".'
294 raise SSLError(e)
299 raise SSLError(e)
/dports/net-im/py-python-telegram-bot/python-telegram-bot-13.1/telegram/vendor/ptb_urllib3/urllib3/util/
H A Dssl_.py9 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
113 raise SSLError("CA directories not supported in older Pythons")
162 raise SSLError(
171 raise SSLError('Fingerprints did not match. Expected "{0}", got "{1}".'
310 raise SSLError(e)
315 raise SSLError(e)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/google-endpoints/requests/packages/urllib3/util/
H A Dssl_.py9 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
113 raise SSLError("CA directories not supported in older Pythons")
162 raise SSLError(
171 raise SSLError('Fingerprints did not match. Expected "{0}", got "{1}".'
310 raise SSLError(e)
315 raise SSLError(e)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/google-endpoints/urllib3/util/
H A Dssl_.py9 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
113 raise SSLError("CA directories not supported in older Pythons")
162 raise SSLError(
171 raise SSLError('Fingerprints did not match. Expected "{0}", got "{1}".'
310 raise SSLError(e)
315 raise SSLError(e)
/dports/www/firefox-legacy/firefox-52.8.0esr/python/requests/requests/packages/urllib3/util/
H A Dssl_.py9 from ..exceptions import SSLError, InsecurePlatformWarning, SNIMissingWarning
102 raise SSLError("CA directories not supported in older Pythons")
149 raise SSLError(
158 raise SSLError('Fingerprints did not match. Expected "{0}", got "{1}".'
294 raise SSLError(e)
299 raise SSLError(e)

12345678910>>...49