HomeSort by relevance Sort by last modified time
    Searched refs:SSL (Results 101 - 125 of 178) sorted by null

1 2 3 45 6 7 8

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLSocketFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/ssl/SSLSocketFactory.java $
30 * This class was copied from org.apache.http.conn.ssl, because it didn't have a suitable
38 import org.apache.http.conn.ssl.AllowAllHostnameVerifier;
39 import org.apache.http.conn.ssl.BrowserCompatHostnameVerifier;
40 import org.apache.http.conn.ssl.StrictHostnameVerifier;
41 import org.apache.http.conn.ssl.X509HostnameVerifier;
45 import javax.net.ssl.HttpsURLConnection;
46 import javax.net.ssl.KeyManager;
47 import javax.net.ssl.KeyManagerFactory;
48 import javax.net.ssl.SSLContext
    [all...]
  /external/curl/packages/vms/
gnv_link_curl.com 126 $! Create the a new option file with special fixup for HP SSL
136 $! Need to check the version of the HP SSL shared image.
142 $ hp_ssl_libcrypto32 = "sys$common:[syslib]ssl$libcrypto_shr32.exe"
143 $ hp_ssl_libssl32 = "sys$common:[syslib]ssl$libssl_shr32.exe"
160 $ hp_ssl_libcrypto32 = "sys$share:ssl$libcrypto_shr32.exe"
161 $ hp_ssl_libssl32 = "sys$share:ssl$libssl_shr32.exe"
207 $ gnv_ssl_libcrypto32 = "gnv$gnu:[lib]ssl$libcrypto_shr32.exe"
208 $ gnv_ssl_libssl32 = "gnv$gnu:[lib]ssl$libssl_shr32.exe"
265 http://h71000.www7.hp.com/openvms/products/ssl/ssl.htm
    [all...]
  /external/boringssl/src/ssl/test/runner/
prf.go 78 // prf30 implements the SSL 3.0 pseudo-random function, as defined in
79 // www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt section 6.
225 // In TLS 1.2 (and SSL 3 for implementation convenience), a
336 // certificates in SSL 3.0.
  /external/boringssl/src/tool/
transport_common.cc 47 #include <openssl/ssl.h>
262 void PrintConnectionInfo(const SSL *ssl) {
263 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
265 fprintf(stderr, " Version: %s\n", SSL_get_version(ssl));
267 SSL_session_reused(ssl) ? "yes" : "no");
269 uint16_t curve = SSL_get_curve_id(ssl);
273 uint16_t sigalg = SSL_get_peer_signature_algorithm(ssl);
276 SignatureAlgorithmToString(SSL_version(ssl), sigalg));
279 SSL_get_secure_renegotiation_support(ssl) ? "yes" : "no")
    [all...]
  /external/curl/tests/
stunnel.pem 90 SSL Server
  /external/boringssl/src/util/
run_android_tests.go 37 suite = flag.String("suite", "all", "Specifies the test suites to run (all, unit, or ssl).")
39 runnerArgs = flag.String("runner-args", "", "Specifies space-separated arguments to pass to ssl/test/runner")
48 return *suite == "all" || *suite == "ssl"
241 binaries = append(binaries, "ssl/test/bssl_shim")
244 "ssl/test/runner/cert.pem",
245 "ssl/test/runner/channel_id_key.pem",
246 "ssl/test/runner/ecdsa_p224_cert.pem",
247 "ssl/test/runner/ecdsa_p224_key.pem",
248 "ssl/test/runner/ecdsa_p256_cert.pem",
249 "ssl/test/runner/ecdsa_p256_key.pem"
    [all...]
  /external/conscrypt/common/src/jni/main/include/
Errors.h 25 #include <openssl/ssl.h>
331 * Throws a javax.net.ssl.SSLException with the given string as a message.
335 return jniThrowException(env, "javax/net/ssl/SSLHandshakeException", message);
339 * Throws a javax.net.ssl.SSLException with the given string as a message.
343 return jniThrowException(env, "javax/net/ssl/SSLException", message);
347 * Throws a javax.net.ssl.SSLProcotolException with the given string as a message.
351 return jniThrowException(env, "javax/net/ssl/SSLProtocolException", message);
356 * SSL errors. This will also log the errors.
359 * @param ssl the possibly null SSL
    [all...]
  /external/libmicrohttpd/src/microhttpd/
internal.h 34 #include <openssl/ssl.h>
454 * SSL/TLS connection states
839 * State required for HTTPS/SSL/TLS support.
841 SSL* tls_session;
1195 * Pointer to our SSL/TLS key (in PEM) in memory.
1200 * Pointer to our SSL/TLS certificate (in PEM) in memory.
1210 * Pointer to our SSL/TLS certificate authority (in PEM) in memory.
1220 * Pointer to SSL/TLS cipher string in memory.
    [all...]
  /external/curl/lib/
urldata.h 63 /* Convenience defines for checking protocols or their SSL based version. Each
86 #include <openssl/ssl.h>
98 #include <mbedtls/ssl.h>
105 #include <polarssl/ssl.h>
117 #undef OCSP_REQUEST /* avoid cyassl/openssl/ssl.h clash with wincrypt.h */
118 #undef OCSP_RESPONSE /* avoid cyassl/openssl/ssl.h clash with wincrypt.h */
119 #include <cyassl/openssl/ssl.h>
133 #include <axTLS/ssl.h>
252 /* enum for the nonblocking SSL connection state machine */
268 /* struct for data related to each SSL connection *
290 mbedtls_ssl_context ssl; member in struct:ssl_connect_data
301 ssl_context ssl; member in struct:ssl_connect_data
323 SSL* ssl; member in struct:ssl_connect_data
985 struct ssl_connect_data ssl[2]; \/* this is for ssl-stuff *\/ member in struct:connectdata
1631 struct ssl_config_data ssl; \/* user defined SSL stuff *\/ member in struct:UserDefined
    [all...]
  /external/webrtc/webrtc/base/
opensslstreamadapter.cc 151 // This needs to be updated when the default of the SSL library changes.
776 SSL_set_bio(ssl_, bio, bio); // the SSL object owns the bio now.
1028 // Get our SSL structure from the store
1029 SSL* ssl = reinterpret_cast<SSL*>(X509_STORE_CTX_get_ex_data( local
1033 reinterpret_cast<OpenSSLStreamAdapter*>(SSL_get_app_data(ssl));
1079 bool OpenSSLStreamAdapter::SSLPostConnectionCheck(SSL* ssl,
1087 ok = OpenSSLAdapter::VerifyServerName(ssl, server_name, ignore_bad_cert())
    [all...]
  /external/libvncserver/webclients/novnc/
README.md 49 * WebSocket SSL/TLS encryption (i.e. "wss://") support
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_windows.go 99 // use as a certificate chain for a SSL/TLS server.
  /prebuilts/go/darwin-x86/src/net/http/httputil/
dump_test.go 79 // Test that an https URL doesn't try to do an SSL negotiation
dump.go 84 // switch to http so the Transport doesn't try to do an SSL
  /prebuilts/go/linux-x86/src/crypto/x509/
root_windows.go 99 // use as a certificate chain for a SSL/TLS server.
  /prebuilts/go/linux-x86/src/net/http/httputil/
dump_test.go 79 // Test that an https URL doesn't try to do an SSL negotiation
dump.go 84 // switch to http so the Transport doesn't try to do an SSL
  /external/wpa_supplicant_8/src/utils/
http_curl.c 12 #include <openssl/ssl.h>
985 SSL *ssl; local
988 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
990 ssl_ctx = ssl->ctx;
1026 res = check_ocsp_resp(ssl_ctx, ssl, cert, ctx->peer_issuer,
1094 static int ocsp_resp_cb(SSL *s, void *arg)
1260 static int curl_patch_ssl_new(SSL *s)
1262 SSL_CTX *ssl = s->ctx; local
1265 ssl->method = real_ssl_method
1280 SSL_CTX *ssl = sslctx; local
    [all...]
  /external/curl/lib/vtls/
openssl.c 24 * Source file for all OpenSSL-specific code for the TLS/SSL layer. No code
44 #include "url.h" /* for the ssl config check function */
55 #include <openssl/ssl.h>
188 /* we have the "SSL is seeded" boolean static to prevent multiple
342 SSL *ssl; local
399 failf(data, "ssl engine does not support loading certificates");
406 failf(data, "ssl engine cannot load client cert with id"
413 failf(data, "ssl engine didn't initialized the certificate "
605 ssl=SSL_new(ctx)
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl_ocsp.c 2 * SSL/TLS interface functions for OpenSSL - BoringSSL OCSP
11 #include <openssl/ssl.h>
486 enum ocsp_result check_ocsp_resp(SSL_CTX *ssl_ctx, SSL *ssl, X509 *cert,
519 SSL_get0_ocsp_response(ssl, &resp_data, &resp_len);
  /external/boringssl/src/ssl/test/
fuzzer.h 19 #include <openssl/ssl.h>
22 // SSL fuzzer utilities.
46 // SetupTest parses parameters from |cbs| and returns a newly-configured |SSL|
48 // input in |cbs| to the SSL stack.
49 static inline bssl::UniquePtr<SSL> SetupTest(CBS *cbs, SSL_CTX *ctx,
55 bssl::UniquePtr<SSL> ssl(SSL_new(ctx));
57 SSL_set_accept_state(ssl.get());
59 SSL_set_connect_state(ssl.get());
69 return ssl;
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
prf.go 80 // prf30 implements the SSL 3.0 pseudo-random function, as defined in
81 // www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt section 6.
common.go 199 vers uint16 // SSL/TLS version negotiated for the session
477 // MinVersion contains the minimum SSL/TLS version that is acceptable.
481 // MaxVersion contains the maximum SSL/TLS version that is acceptable.
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
prf.go 80 // prf30 implements the SSL 3.0 pseudo-random function, as defined in
81 // www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt section 6.
common.go 199 vers uint16 // SSL/TLS version negotiated for the session
477 // MinVersion contains the minimum SSL/TLS version that is acceptable.
481 // MaxVersion contains the maximum SSL/TLS version that is acceptable.
    [all...]

Completed in 576 milliseconds

1 2 3 45 6 7 8