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

  /external/openssl/ssl/
s23_srvr.c 306 else if (!(s->options & SSL_OP_NO_TLSv1))
385 else if (!(s->options & SSL_OP_NO_TLSv1))
404 else if (!(s->options & SSL_OP_NO_TLSv1))
565 if (s->options & SSL_OP_NO_TLSv1 && s->options & SSL_OP_NO_SSLv3)
s23_clnt.c 298 * answer is SSL_OP_NO_TLSv1|SSL_OP_NO_SSLv3|SSL_OP_NO_SSLv2.
300 mask = SSL_OP_NO_TLSv1_1|SSL_OP_NO_TLSv1
319 mask &= ~SSL_OP_NO_TLSv1;
321 if ((options & SSL_OP_NO_TLSv1) && (options & mask) != mask)
695 !(s->options & SSL_OP_NO_TLSv1))
ssl.h 604 #define SSL_OP_NO_TLSv1 0x04000000L
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
NativeCrypto.java 344 public static final long SSL_OP_NO_TLSv1 = 0x04000000L;
459 long optionsToSet = (SSL_OP_NO_SSLv3 | SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_1 | SSL_OP_NO_TLSv1_2);
467 optionsToSet &= ~SSL_OP_NO_TLSv1;
468 optionsToClear |= SSL_OP_NO_TLSv1;
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_openssl.cc 449 options.ConfigureFlag(SSL_OP_NO_TLSv1, !ssl_config_.tls1_enabled);
    [all...]
  /external/openssl/apps/
s_client.c 866 off|=SSL_OP_NO_TLSv1;
    [all...]
s_server.c     [all...]
  /external/openssl/include/openssl/
ssl.h 604 #define SSL_OP_NO_TLSv1 0x04000000L
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
NativeCryptoTest.java 182 assertTrue((NativeCrypto.SSL_get_options(s) & NativeCrypto.SSL_OP_NO_TLSv1) == 0);
    [all...]

Completed in 157 milliseconds