/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
SSLSessionTest.java | 18 package org.apache.harmony.tests.javax.net.ssl; 30 import javax.net.ssl.KeyManager; 31 import javax.net.ssl.KeyManagerFactory; 32 import javax.net.ssl.SSLContext; 33 import javax.net.ssl.SSLServerSocket; 34 import javax.net.ssl.SSLSession; 35 import javax.net.ssl.SSLSessionBindingEvent; 36 import javax.net.ssl.SSLSessionBindingListener; 37 import javax.net.ssl.SSLSocket; 38 import javax.net.ssl.TrustManager [all...] |
SSLEngineTest.java | 18 package org.apache.harmony.tests.javax.net.ssl; 31 import javax.net.ssl.SSLContext; 32 import javax.net.ssl.SSLEngine; 33 import javax.net.ssl.SSLEngineResult; 34 import javax.net.ssl.SSLEngineResult.Status; 35 import javax.net.ssl.SSLException; 36 import javax.net.ssl.SSLEngineResult.HandshakeStatus; 39 import libcore.javax.net.ssl.TestSSLContext; 137 * javax.net.ssl.SSLEngine#setEnabledProtocols(String[] protocols) 138 * javax.net.ssl.SSLEngine#getEnabledProtocols( [all...] |
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
SSLConfigurationAsserts.java | 17 package libcore.javax.net.ssl; 26 import javax.net.ssl.SSLContext; 27 import javax.net.ssl.SSLEngine; 28 import javax.net.ssl.SSLParameters; 29 import javax.net.ssl.SSLServerSocket; 30 import javax.net.ssl.SSLServerSocketFactory; 31 import javax.net.ssl.SSLSocket; 32 import javax.net.ssl.SSLSocketFactory; 35 * Assertions about the configuration of TLS/SSL primitives.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
httplib.py | 1151 import ssl namespace [all...] |
imaplib.py | 1126 import ssl namespace 1199 def ssl(self): member in class:IMAP4.IMAP4_SSL [all...] |
urllib.py | 101 # check for SSL 103 import ssl namespace [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ftplib.py | 14 import ssl namespace 16 ssl = None variable 257 if ssl is not None: 262 """An asyncore.dispatcher subclass supporting TLS/SSL.""" 268 self.socket = ssl.wrap_socket(self.socket, suppress_ragged_eofs=False, 271 ssl_version=ssl.PROTOCOL_SSLv23) 277 except ssl.SSLError, err: 278 if err.args[0] in (ssl.SSL_ERROR_WANT_READ, 279 ssl.SSL_ERROR_WANT_WRITE): 281 elif err.args[0] == ssl.SSL_ERROR_EOF [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
httplib.py | 1151 import ssl namespace [all...] |
imaplib.py | 1126 import ssl namespace 1199 def ssl(self): member in class:IMAP4.IMAP4_SSL [all...] |
urllib.py | 101 # check for SSL 103 import ssl namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ftplib.py | 14 import ssl namespace 16 ssl = None variable 257 if ssl is not None: 262 """An asyncore.dispatcher subclass supporting TLS/SSL.""" 268 self.socket = ssl.wrap_socket(self.socket, suppress_ragged_eofs=False, 271 ssl_version=ssl.PROTOCOL_SSLv23) 277 except ssl.SSLError, err: 278 if err.args[0] in (ssl.SSL_ERROR_WANT_READ, 279 ssl.SSL_ERROR_WANT_WRITE): 281 elif err.args[0] == ssl.SSL_ERROR_EOF [all...] |
/external/jetty/src/java/org/eclipse/jetty/util/ssl/ |
SslContextFactory.java | 19 package org.eclipse.jetty.util.ssl; 43 import javax.net.ssl.CertPathTrustManagerParameters; 44 import javax.net.ssl.KeyManager; 45 import javax.net.ssl.KeyManagerFactory; 46 import javax.net.ssl.SSLContext; 47 import javax.net.ssl.SSLEngine; 48 import javax.net.ssl.SSLServerSocket; 49 import javax.net.ssl.SSLServerSocketFactory; 50 import javax.net.ssl.SSLSocket; 51 import javax.net.ssl.SSLSocketFactory [all...] |
/external/libvncserver/x11vnc/ |
connections.c | 952 int ssl = 0; local 956 ssl = 1; 996 if (ssl) { 1027 if (ssl) { 1037 if (ssl) { 1047 if (ssl) { [all...] |
enc.h | 67 * without using SSH or SSL. 191 " SSL Show Certificate mode: Set the cipher to 'showcert' to fetch\n" 192 " the SSL certificate from remotehost:port and print it to the stdout.\n" 259 #include <openssl/ssl.h> 1536 SSL *ssl = NULL; local [all...] |
sslhelper.c | 147 rfbLog("Using SSL Certificate:\n"); 285 /* ssl */ 286 if (no_external_cmds || !cmd_ok("ssl")) { 300 rfbLog("get the certificate information to the VNC viewers SSL\n"); 309 rfbLog("authenticate this server for this session. See the -ssl\n"); 722 * This is because on older systems both zlib.h and ssl.h define 728 #include <openssl/ssl.h> 735 static SSL *ssl = NULL; variable 747 " ssl helper process.\n") [all...] |
/external/wpa_supplicant_8/src/crypto/ |
tls_openssl.c | 2 * SSL/TLS interface functions for OpenSSL 19 #include <openssl/ssl.h> 86 SSL *ssl; member in struct:tls_connection 363 static int tls_cryptoapi_cert(SSL *ssl, const char *name) 431 if (!SSL_use_certificate(ssl, cert)) { 445 if (!SSL_use_RSAPrivateKey(ssl, rsa)) 464 static int tls_cryptoapi_ca_cert(SSL_CTX *ssl_ctx, SSL *ssl, const char *name 738 SSL_CTX *ssl; local 851 SSL_CTX *ssl = ssl_ctx; local 1068 SSL_CTX *ssl = ssl_ctx; local 1502 SSL *ssl; local 2791 SSL *ssl; local [all...] |
/external/wpa_supplicant_8/src/utils/ |
http_curl.c | 12 #include <openssl/ssl.h> 947 SSL *ssl; local 950 ssl = X509_STORE_CTX_get_ex_data(x509_ctx, 952 ssl_ctx = ssl->ctx; 1036 static int ocsp_resp_cb(SSL *s, void *arg) 1200 static int curl_patch_ssl_new(SSL *s) 1202 SSL_CTX *ssl = s->ctx; local 1205 ssl->method = real_ssl_method; 1220 SSL_CTX *ssl = sslctx local [all...] |
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
SSLSessionTest.java | 17 package libcore.javax.net.ssl; 22 import javax.net.ssl.SSLPeerUnverifiedException;
|
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.3.2/ |
httpclient-4.3.2.jar | |
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.1/ |
httpclient-4.2.1.jar | |
/prebuilts/devtools/tools/lib/ |
httpclient-4.1.1.jar | |
/prebuilts/tools/common/http-client/ |
httpclient-4.1.1.jar | |
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.1.1/ |
httpclient-4.1.1.jar | |
/prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpclient/4.1.1/ |
httpclient-4.1.1.jar | |
/external/robolectric/lib/main/ |
httpclient-4.0.3.jar | |