HomeSort by relevance Sort by last modified time
    Searched refs:verify_mode (Results 1 - 20 of 20) sorted by null

  /external/python/cpython3/Lib/test/
test_ssl.py 152 context.verify_mode = cert_reqs
    [all...]
test_imaplib.py 485 ssl_context.verify_mode = ssl.CERT_REQUIRED
498 ssl_context.verify_mode = ssl.CERT_REQUIRED
    [all...]
test_httplib.py     [all...]
test_poplib.py 355 ctx.verify_mode = ssl.CERT_REQUIRED
test_ftplib.py     [all...]
  /external/python/cpython2/Lib/test/
test_ssl.py     [all...]
test_httplib.py     [all...]
test_ftplib.py 734 ctx.verify_mode = ssl.CERT_REQUIRED
  /external/python/cpython3/Lib/
ssl.py 470 def verify_mode(self): member in class:SSLContext
471 value = super().verify_mode
477 @verify_mode.setter
478 def verify_mode(self, value): member in class:SSLContext
479 super(SSLContext, SSLContext).verify_mode.__set__(self, value)
500 context.verify_mode = CERT_REQUIRED
507 elif context.verify_mode != CERT_NONE:
534 context.verify_mode = cert_reqs
545 elif context.verify_mode != CERT_NONE:
737 self._context.verify_mode = cert_req
    [all...]
  /external/python/cpython2/Lib/
ssl.py 435 context.verify_mode = CERT_REQUIRED
451 elif context.verify_mode != CERT_NONE:
480 context.verify_mode = cert_reqs
491 elif context.verify_mode != CERT_NONE:
550 self._context.verify_mode = cert_reqs
    [all...]
  /external/boringssl/src/ssl/
handshake.cc 192 if ((!ssl->server || (ssl->verify_mode & SSL_VERIFY_PEER)) &&
338 if (ssl->verify_mode == SSL_VERIFY_NONE) {
ssl_x509.cc 406 if (verify_ret <= 0 && ssl->verify_mode != SSL_VERIFY_NONE) {
632 return ctx->verify_mode;
649 ssl->verify_mode = mode;
672 ctx->verify_mode = mode;
    [all...]
handshake_server.cc 641 hs->cert_request = !!(ssl->verify_mode & SSL_VERIFY_PEER);
643 if ((ssl->verify_mode & SSL_VERIFY_PEER_IF_NO_OBC) &&
    [all...]
tls13_server.cc 602 hs->cert_request = !!(ssl->verify_mode & SSL_VERIFY_PEER);
604 if ((ssl->verify_mode & SSL_VERIFY_PEER_IF_NO_OBC) &&
796 (ssl->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT) == 0;
    [all...]
ssl_lib.cc 551 ret->verify_mode = SSL_VERIFY_NONE;
681 ssl->verify_mode = ctx->verify_mode;
    [all...]
internal.h 2029 int verify_mode; member in struct:bssl::SSLContext
2637 uint8_t verify_mode; member in struct:bssl::SSLConnection
    [all...]
  /external/python/cpython3/Lib/asyncio/
sslproto.py 33 sslcontext.verify_mode = ssl.CERT_REQUIRED
585 and self._sslcontext.verify_mode != ssl.CERT_NONE):
selector_events.py 896 self._sslcontext.verify_mode != ssl.CERT_NONE):
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_events.py 831 server_context.verify_mode = ssl.CERT_NONE
836 client_context.verify_mode = ssl.CERT_NONE
    [all...]
  /external/python/cpython3/Lib/http/
client.py     [all...]

Completed in 333 milliseconds