HomeSort by relevance Sort by last modified time
    Searched defs:ssl_version (Results 1 - 22 of 22) sorted by null

  /external/libmicrohttpd/src/testcurl/https/
test_tls_options.c 84 const char *ssl_version; local
97 ssl_version = curl_version_info (CURLVERSION_NOW)->ssl_version;
98 if (NULL == ssl_version)
103 if (0 != strncmp (ssl_version, "GnuTLS", 6))
test_https_get_parallel_threads.c 138 const char *ssl_version; local
147 ssl_version = curl_version_info (CURLVERSION_NOW)->ssl_version;
148 if (NULL == ssl_version)
153 if (0 != strncmp (ssl_version, "GnuTLS", 6))
  /external/boringssl/src/ssl/
ssl_versions.cc 267 static uint16_t ssl_version(const SSL *ssl) { function in namespace:bssl
270 return ssl->s3->hs->early_session->ssl_version;
379 int SSL_version(const SSL *ssl) {
380 return wire_version_to_api(ssl_version(ssl));
384 return ssl_version_to_string(ssl_version(ssl));
388 return ssl_version_to_string(session->ssl_version);
392 return wire_version_to_api(session->ssl_version);
398 return api_version_to_wire(&session->ssl_version, version);
ssl_asn1.cc 209 !CBB_add_asn1_uint64(&session, in->ssl_version) ||
536 uint64_t version, ssl_version; local
541 !CBS_get_asn1_uint64(&session, &ssl_version) ||
546 ssl_version > UINT16_MAX ||
547 !ssl_protocol_version_from_wire(&unused, ssl_version)) {
551 ret->ssl_version = ssl_version;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ftplib.py 622 ssl_version = ssl.PROTOCOL_TLSv1 variable in class:.FTP_TLS
640 if self.ssl_version == ssl.PROTOCOL_TLSv1:
645 ssl_version=self.ssl_version)
677 ssl_version=self.ssl_version)
    [all...]
  /external/curl/lib/vtls/
mbedtls.c 200 long ssl_version = SSL_CONN_CONFIG(version); local
204 switch(ssl_version) {
207 ssl_version = CURL_SSLVERSION_TLSv1_0;
214 ssl_version_max = ssl_version << 16;
221 result = mbedtls_version_from_curl(&mbedtls_ver_min, ssl_version);
polarssl.c 155 static CURLcode polarssl_version_from_curl(int *polarver, long ssl_version)
157 switch(ssl_version) {
178 long ssl_version = SSL_CONN_CONFIG(version); local
184 switch(ssl_version) {
187 ssl_version = CURL_SSLVERSION_TLSv1_0;
194 ssl_version_max = ssl_version << 16;
201 result = polarssl_version_from_curl(&ssl_min_ver, ssl_version);
gskit.c 764 long ssl_version = SSL_CONN_CONFIG(version); local
766 long i = ssl_version;
769 ssl_version_max = ssl_version;
805 const long int ssl_version = SSL_CONN_CONFIG(version); local
880 switch(ssl_version) {
    [all...]
gtls.c 393 long ssl_version = SSL_CONN_CONFIG(version); local
395 long i = ssl_version;
400 ssl_version_max = ssl_version << 16;
437 long ssl_version = SSL_CONN_CONFIG(version); local
439 if(ssl_version == CURL_SSLVERSION_TLSv1_3 ||
445 ssl_version_max = ssl_version << 16;
447 switch(ssl_version | ssl_version_max) {
    [all...]
schannel.c 192 long ssl_version = SSL_CONN_CONFIG(version); local
194 long i = ssl_version;
198 ssl_version_max = ssl_version << 16;
    [all...]
darwinssl.c 1223 long ssl_version = SSL_CONN_CONFIG(version); local
    [all...]
openssl.c 1961 long ssl_version = SSL_CONN_CONFIG(version); local
2054 const long int ssl_version = SSL_CONN_CONFIG(version); local
    [all...]
  /external/python/cpython2/Lib/
ftplib.py 646 ssl_version = ssl.PROTOCOL_SSLv23 variable in class:FTP.FTP_TLS
660 context = ssl._create_stdlib_context(self.ssl_version,
676 if self.ssl_version >= ssl.PROTOCOL_SSLv23:
    [all...]
  /external/python/cpython3/Lib/
ftplib.py 720 ssl_version = ssl.PROTOCOL_SSLv23 variable in class:.FTP_TLS
738 context = ssl._create_stdlib_context(self.ssl_version,
754 if self.ssl_version >= ssl.PROTOCOL_SSLv23:
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ftplib.py 632 ssl_version = ssl.PROTOCOL_TLSv1 variable in class:.FTP_TLS
650 if self.ssl_version == ssl.PROTOCOL_TLSv1:
655 ssl_version=self.ssl_version)
687 ssl_version=self.ssl_version)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
ftplib.py 632 ssl_version = ssl.PROTOCOL_TLSv1 variable in class:.FTP_TLS
650 if self.ssl_version == ssl.PROTOCOL_TLSv1:
655 ssl_version=self.ssl_version)
687 ssl_version=self.ssl_version)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ftplib.py 632 ssl_version = ssl.PROTOCOL_TLSv1 variable in class:.FTP_TLS
650 if self.ssl_version == ssl.PROTOCOL_TLSv1:
655 ssl_version=self.ssl_version)
687 ssl_version=self.ssl_version)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ftplib.py 632 ssl_version = ssl.PROTOCOL_TLSv1 variable in class:.FTP_TLS
650 if self.ssl_version == ssl.PROTOCOL_TLSv1:
655 ssl_version=self.ssl_version)
687 ssl_version=self.ssl_version)
    [all...]
  /external/curl/src/
tool_cfgable.h 166 long ssl_version; member in struct:OperationConfig
  /external/google-breakpad/src/third_party/curl/
curl.h 1821 const char *ssl_version; \/* human readable string *\/ member in struct:__anon20986
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h 622 // SSL_version returns the TLS or DTLS protocol version used by |ssl|, which is
625 OPENSSL_EXPORT int SSL_version(const SSL *ssl);
4126 uint16_t ssl_version; \/\/ what ssl version session info is being kept in here? member in struct:ssl_session_st
    [all...]
  /external/curl/include/curl/
curl.h 2615 const char *ssl_version; \/* human readable string *\/ member in struct:__anon17287
    [all...]

Completed in 294 milliseconds