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

1 2 34 5 6 7 8

  /external/curl/packages/vms/
curl_startup.com 58 $ gnv_ssl_libcrypto32 = "gnv$gnu:[lib]ssl$libcrypto_shr32.exe"
59 $ gnv_ssl_libssl32 = "gnv$gnu:[lib]ssl$libssl_shr32.exe"
65 $ hp_ssl_libcrypto32 = "sys$share:ssl$libcrypto_shr32.exe"
66 $ hp_ssl_libssl32 = "sys$share:ssl$libssl_shr32.exe"
72 $ write sys$output "HP SSL package not found and is required."
generate_config_vms_h_curl.com 68 $! First check to see if SSL is disabled.
74 $! ssl$* logicals means HP ssl is present
76 $ if f$trnlnm("ssl$root") .nes. ""
82 $! HP defines OPENSSL as SSL$INCLUDE as a convenience for linking.
90 $! Non HP SSL is installed, default to use it.
103 $! Finally check to see if hp ssl has been specifically included.
400 $ ssl_include = f$trnlnm("ssl$include")
417 $ search/output=nla0: ssl$include:*.h CONF_MFLAGS_IGNORE_MISSING_FILE
  /external/webrtc/webrtc/base/
openssladapter.cc 357 // the SSL object owns the bio now
713 bool OpenSSLAdapter::VerifyServerName(SSL* ssl, const char* host,
721 X509* certificate = SSL_get_peer_certificate(ssl);
738 SSL_CIPHER_description(SSL_get_current_cipher(ssl), NULL, 128);
823 bool OpenSSLAdapter::SSLPostConnectionCheck(SSL* ssl, const char* host) {
824 bool ok = VerifyServerName(ssl, host, ignore_bad_cert());
827 ok = (SSL_get_verify_result(ssl) == X509_V_OK ||
844 OpenSSLAdapter::SSLInfoCallback(const SSL* s, int where, int ret)
890 SSL* ssl = reinterpret_cast<SSL*>( local
    [all...]
helpers.cc 118 // No SSL implementation -- use rand()
140 #error No SSL implementation has been selected!
  /external/curl/lib/vtls/
axtls.c 25 * Source file for all axTLS-specific code for the TLS/SSL layer. No code
33 #include <axTLS/ssl.h>
54 /* axTLS has no global init. Everything is done through SSL and SSL_CTX
123 if(connssl->ssl) {
124 ssl_free (connssl->ssl);
125 connssl->ssl = NULL;
135 * ssl context and state. This function is called after the TCP connect
142 SSL *ssl = NULL; local
154 if(conn->ssl[sockindex].state == ssl_connection_complete
289 SSL *ssl = conn->ssl[sockindex].ssl; local
481 SSL *ssl = conn->ssl[sockindex].ssl; local
    [all...]
  /external/libbrillo/brillo/streams/
tls_stream.cc 13 #include <openssl/ssl.h>
25 // SSL info callback which is called by OpenSSL when we enable logging level of
27 void TlsInfoCallback(const SSL* /* ssl */, int where, int ret) {
54 // Static variable to store the index of TlsStream private data in SSL context
120 std::unique_ptr<SSL, decltype(&SSL_free)> ssl_{nullptr, SSL_free};
327 // SSL CTX object referenced by |ctx|.
328 SSL* ssl = static_cast<SSL*>(X509_STORE_CTX_get_ex_data local
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.h 47 #include <openssl/ssl.h>
53 /* WANT_READ if SSL connection needs more input; or WANT_WRITE if it
54 needs more output; or IO_NONE. This is necessary because SSL/TLS
58 SSL connection. */
71 SSL *ssl; member in struct:SPDY_Connection
mhd2spdy_spdy.c 167 rv = SSL_write(connection->ssl, data, length);
169 int err = SSL_get_error(connection->ssl, rv);
238 rv = SSL_read(connection->ssl, buf, length);
240 int err = SSL_get_error(connection->ssl, rv);
504 * Callback function for SSL/TLS NPN. Since this program only supports
509 spdy_cb_ssl_select_next_proto(SSL* ssl,
516 (void)ssl;
535 * Setup SSL context. We pass |spdy_proto_version| to get negotiated
553 spdy_ssl_handshake(SSL *ssl
729 SSL *ssl=NULL; local
    [all...]
  /external/libcups/cups/
tls-boringssl.c 27 #include <openssl/ssl.h>
149 snprintf(buffer, bufsize, "%s/.cups/ssl", home);
161 strlcpy(buffer, CUPS_SERVERROOT "/ssl", bufsize);
400 * '_httpTLSRead()' - Read from a SSL/TLS connection.
408 return (SSL_read((SSL *)(http->tls), buf, len));
424 * '_httpTLSStart()' - Set up SSL/TLS support on a connection.
533 * '_httpTLSStop()' - Shut down SSL/TLS on a connection.
551 "Fatal error during SSL shutdown!", 0);
565 * '_httpTLSWrite()' - Write to a SSL/TLS connection.
578 result = SSL_write((SSL *)(http->tls), buf, len)
    [all...]
  /system/netd/tests/dns_responder/
dns_tls_frontend.cpp 28 #include <openssl/ssl.h>
148 ALOGE("SSL context creation failed");
270 bssl::UniquePtr<SSL> ssl(SSL_new(ctx_.get()));
271 SSL_set_fd(ssl.get(), client);
273 ALOGD("Doing SSL handshake");
275 if (SSL_accept(ssl.get()) <= 0) {
276 ALOGI("SSL negotiation failure");
278 ALOGD("SSL handshake complete");
279 success = handleOneRequest(ssl.get())
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 2 * SSL/TLS interface functions for OpenSSL
19 #include <openssl/ssl.h>
70 static size_t SSL_get_client_random(const SSL *ssl, unsigned char *out,
73 if (!ssl->s3 || outlen < SSL3_RANDOM_SIZE)
75 os_memcpy(out, ssl->s3->client_random, SSL3_RANDOM_SIZE);
80 static size_t SSL_get_server_random(const SSL *ssl, unsigned char *out,
83 if (!ssl->s3 || outlen < SSL3_RANDOM_SIZE)
85 os_memcpy(out, ssl->s3->server_random, SSL3_RANDOM_SIZE)
197 SSL_CTX *ssl; member in struct:tls_data
204 SSL *ssl; member in struct:tls_connection
886 SSL_CTX *ssl; local
1044 SSL_CTX *ssl = data->ssl; local
1339 SSL_CTX *ssl = data->ssl; local
1787 SSL *ssl; local
3102 SSL *ssl; local
3195 SSL *ssl; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
infinite_recursion.py     [all...]
  /external/python/cpython2/Lib/lib2to3/tests/data/
infinite_recursion.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py     [all...]
  /external/libevent/
bufferevent_openssl.c 61 #include <openssl/ssl.h>
70 library will happily speak SSL over anything that implements a BIO
266 The implementation comes in two flavors: one that connects its SSL object
268 SSL object connect to a socket directly. The latter should generally be
284 events here as timers only. If we have an SSL, then we use
291 /* The SSL object doing our encryption. */
292 SSL *ssl; member in struct:bufferevent_openssl
295 know to write data to the SSL. */
335 "ssl",
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
example_test.go 110 // connection by setting (Pre)-Master-Secret log filename in SSL Protocol
  /prebuilts/go/linux-x86/src/crypto/tls/
example_test.go 110 // connection by setting (Pre)-Master-Secret log filename in SSL Protocol
  /external/boringssl/src/crypto/obj/
objects.go 388 * This package is an SSL implementation written
390 * The implementation was written so as to conform with Netscapes SSL.
395 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
541 * This package is an SSL implementation written
543 * The implementation was written so as to conform with Netscapes SSL.
548 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  /external/boringssl/src/crypto/x509/
x_x509.c 5 * This package is an SSL implementation written
7 * The implementation was written so as to conform with Netscapes SSL.
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
156 OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW);
  /external/boringssl/src/include/openssl/
base.h 324 typedef struct ssl_st SSL;
  /external/boringssl/src/tool/
server.cc 21 #include <openssl/ssl.h>
257 bssl::UniquePtr<SSL> ssl(SSL_new(ctx.get()));
258 SSL_set_bio(ssl.get(), bio, bio);
260 int ret = SSL_accept(ssl.get());
262 int ssl_err = SSL_get_error(ssl.get(), ret);
270 PrintConnectionInfo(ssl.get());
272 result = TransferData(ssl.get(), sock);
  /external/libmicrohttpd/src/testspdy/
test_new_connection.c 98 #include <openssl/ssl.h>
108 SSL *ssl; member in struct:Connection
110 /* WANT_READ if SSL connection needs more input; or WANT_WRITE if it
111 needs more output; or IO_NONE. This is necessary because SSL/TLS
115 SSL connection. */
233 rv = SSL_write(connection->ssl, data, length);
235 int err = SSL_get_error(connection->ssl, rv);
265 rv = SSL_read(connection->ssl, buf, length);
267 int err = SSL_get_error(connection->ssl, rv)
658 SSL *ssl; local
    [all...]
test_request_response.c 80 #include <openssl/ssl.h>
90 SSL *ssl; member in struct:Connection
92 /* WANT_READ if SSL connection needs more input; or WANT_WRITE if it
93 needs more output; or IO_NONE. This is necessary because SSL/TLS
97 SSL connection. */
215 rv = SSL_write(connection->ssl, data, length);
217 int err = SSL_get_error(connection->ssl, rv);
247 rv = SSL_read(connection->ssl, buf, length);
249 int err = SSL_get_error(connection->ssl, rv)
646 SSL *ssl; local
    [all...]
  /frameworks/base/core/java/org/apache/http/conn/ssl/
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 $
32 package org.apache.http.conn.ssl;
39 import javax.net.ssl.HttpsURLConnection;
40 import javax.net.ssl.KeyManager;
41 import javax.net.ssl.KeyManagerFactory;
42 import javax.net.ssl.SSLContext;
43 import javax.net.ssl.SSLSocket;
44 import javax.net.ssl.TrustManager;
45 import javax.net.ssl.TrustManagerFactory;
59 * Layered socket factory for TLS/SSL connections, based on JSSE
    [all...]

Completed in 3296 milliseconds

1 2 34 5 6 7 8