Searched refs:SSL (Results 1 - 25 of 86) sorted by relevance

1234

/external/openssl/ssl/
H A Dssl_locl.h5 * 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
496 RSA *(*rsa_tmp_cb)(SSL *ssl,int is_export,int keysize);
500 DH *(*dh_tmp_cb)(SSL *ssl,int is_export,int keysize);
505 EC_KEY *(*ecdh_tmp_cb)(SSL *ssl,int is_export,int keysize);
527 RSA *peer_rsa_tmp; /* not used for SSL 2 */
530 DH *peer_dh_tmp; /* not used for SSL 2 */
562 int (*enc)(SSL *, in
[all...]
H A Dsrtp.h5 * 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
134 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
135 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
137 STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl);
138 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
H A Dssl.h5 * 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
381 typedef int (*tls_session_ticket_ext_cb_fn)(SSL *s, const unsigned char *data, int len, void *arg);
382 typedef int (*tls_session_secret_cb_fn)(SSL *s, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, SSL_CIPHER **cipher, void *arg);
412 int (*ssl_new)(SSL *s);
413 void (*ssl_clear)(SSL *s);
414 void (*ssl_free)(SSL *s);
415 int (*ssl_accept)(SSL *
[all...]
H A Dssl_lib.c2 * \brief Version independent SSL functions.
7 * This package is an SSL implementation written
9 * The implementation was written so as to conform with Netscapes SSL.
14 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
167 (int (*)(SSL *,int))ssl_undefined_function,
168 (int (*)(SSL *, unsigned char *, int))ssl_undefined_function,
170 (int (*)(SSL *, unsigned char *, unsigned char *, int))ssl_undefined_function,
171 (int (*)(SSL*, int))ssl_undefined_function,
172 (int (*)(SSL *, cons
[all...]
H A Ds2_lib.c5 * 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
314 int ssl2_pending(const SSL *s)
319 int ssl2_new(SSL *s)
350 void ssl2_free(SSL *s)
365 void ssl2_clear(SSL *s)
385 long ssl2_ctrl(SSL *s, int cmd, long larg, void *parg)
400 long ssl2_callback_ctrl(SSL *
[all...]
H A Ds23_lib.c5 * 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
120 int ssl23_read(SSL *s, void *buf, int len)
143 int ssl23_peek(SSL *s, void *buf, int len)
166 int ssl23_write(SSL *s, const void *buf, int len)
H A Ds23_pkt.c5 * 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
66 int ssl23_write_bytes(SSL *s)
93 int ssl23_read_bytes(SSL *s, int n)
H A Dd1_lib.c71 int dtls1_listen(SSL *s, struct sockaddr *client);
95 int dtls1_new(SSL *s)
133 static void dtls1_clear_queues(SSL *s)
186 void dtls1_free(SSL *s)
201 void dtls1_clear(SSL *s)
247 long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg)
293 void dtls1_start_timer(SSL *s)
318 struct timeval* dtls1_get_timeout(SSL *s, struct timeval* timeleft)
363 int dtls1_is_timer_expired(SSL *s)
383 void dtls1_double_timeout(SSL *
[all...]
H A Dd1_srtp.c5 * 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
232 int SSL_set_tlsext_use_srtp(SSL *s,const char *profiles)
238 STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *s)
256 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s)
263 int ssl_add_clienthello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen)
305 int ssl_parse_clienthello_use_srtp_ext(SSL *s, unsigned char *d, int len,int *al)
405 int ssl_add_serverhello_use_srtp_ext(SSL *
[all...]
H A Dbio_ssl.c5 * 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
77 SSL *ssl; /* The ssl handle :-) */
144 SSL *ssl;
232 SSL *ssl;
298 SSL **sslp,*ssl;
357 ssl=(SSL *)ptr;
372 sslp=(SSL **)pt
[all...]
H A Dt1_reneg.c5 * 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
116 int ssl_add_clienthello_renegotiate_ext(SSL *s, unsigned char *p, int *len,
147 int ssl_parse_clienthello_renegotiate_ext(SSL *s, unsigned char *d, int len,
196 int ssl_add_serverhello_renegotiate_ext(SSL *s, unsigned char *p, int *len,
232 int ssl_parse_serverhello_renegotiate_ext(SSL *s, unsigned char *d, int len,
H A Dkssl.h127 ** (1) Kerberos session key to SSL, and
128 ** (2) Config data between application and SSL lib
175 void SSL_set0_kssl_ctx(SSL *s, KSSL_CTX *kctx);
176 KSSL_CTX * SSL_get0_kssl_ctx(SSL *s);
H A Dd1_pkt.c62 * This package is an SSL implementation written
64 * The implementation was written so as to conform with Netscapes SSL.
69 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
169 static int have_handshake_fragment(SSL *s, int type, unsigned char *buf,
171 static int dtls1_record_replay_check(SSL *s, DTLS1_BITMAP *bitmap);
172 static void dtls1_record_bitmap_update(SSL *s, DTLS1_BITMAP *bitmap);
173 static DTLS1_BITMAP *dtls1_get_bitmap(SSL *s, SSL3_RECORD *rr,
176 static int dtls1_record_needs_buffering(SSL *s, SSL3_RECORD *rr,
179 static int dtls1_buffer_record(SSL *
[all...]
H A Dtls_srp.c228 int SSL_srp_server_param_with_username(SSL *s, int *ad)
256 int SSL_set_srp_server_param_pw(SSL *s, const char *user, const char *pass, const char *grp)
277 int SSL_set_srp_server_param(SSL *s, const BIGNUM *N, const BIGNUM *g,
343 int SRP_generate_server_master_secret(SSL *s,unsigned char *master_key)
373 int SRP_generate_client_master_secret(SSL *s,unsigned char *master_key)
410 int SRP_Calc_A_param(SSL *s)
435 BIGNUM *SSL_get_srp_g(SSL *s)
442 BIGNUM *SSL_get_srp_N(SSL *s)
449 char *SSL_get_srp_username(SSL *s)
456 char *SSL_get_srp_userinfo(SSL *
[all...]
H A Dssl_sess.c5 * 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
150 SSL_SESSION *SSL_get_session(const SSL *ssl)
156 SSL_SESSION *SSL_get1_session(SSL *ssl)
245 * very close to 2^128 (or 2^256) SSL sessions to our server. How you might
249 static int def_generate_session_id(const SSL *ssl, unsigned char *id,
272 void SSL_set_session_creation_enabled (SSL *s, int creation_enabled)
277 int ssl_get_new_session(SSL *
[all...]
/external/openssl/include/openssl/
H A Dsrtp.h5 * 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
134 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
135 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
137 STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl);
138 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
H A Dssl.h5 * 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
381 typedef int (*tls_session_ticket_ext_cb_fn)(SSL *s, const unsigned char *data, int len, void *arg);
382 typedef int (*tls_session_secret_cb_fn)(SSL *s, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, SSL_CIPHER **cipher, void *arg);
412 int (*ssl_new)(SSL *s);
413 void (*ssl_clear)(SSL *s);
414 void (*ssl_free)(SSL *s);
415 int (*ssl_accept)(SSL *
[all...]
H A Dkssl.h127 ** (1) Kerberos session key to SSL, and
128 ** (2) Config data between application and SSL lib
175 void SSL_set0_kssl_ctx(SSL *s, KSSL_CTX *kctx);
176 KSSL_CTX * SSL_get0_kssl_ctx(SSL *s);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dopenssladapter.h34 typedef struct ssl_st SSL; typedef in typeref:struct:ssl_st
56 // Note that the socket returns ST_CONNECTING while SSL is being negotiated.
75 static bool VerifyServerName(SSL* ssl, const char* host,
77 bool SSLPostConnectionCheck(SSL* ssl, const char* host);
79 static void SSLInfoCallback(const SSL* s, int where, int ret);
91 // If true, socket will retain SSL configuration after Close.
94 SSL* ssl_;
H A Dopensslstreamadapter.h35 typedef struct ssl_st SSL; typedef in typeref:struct:ssl_st
45 // Static methods to initialize and deinit the SSL library are in
57 // This class does not support the SSL connection restart feature
62 // SSL error, and it has an explicit SSL_CLOSED state. It should not
99 SSL_WAIT, // waiting for the stream to open to start SSL negotiation
100 SSL_CONNECTING, // SSL negotiation in progress
101 SSL_CONNECTED, // SSL stream successfully established
102 SSL_ERROR, // some SSL error occurred, stream is closed
118 // Prepare SSL library, state is SSL_CONNECTING.
120 // Perform SSL negotiatio
[all...]
/external/chromium/chrome/browser/ssl/
H A Dssl_add_cert_handler.cc46 &RenderViewHostDelegate::SSL::OnVerifyClientCertificateError,
73 &RenderViewHostDelegate::SSL::OnAddClientCertificateError,
78 &RenderViewHostDelegate::SSL::OnAddClientCertificateSuccess,
85 &RenderViewHostDelegate::SSL::OnAddClientCertificateFinished,
/external/chromium/net/tools/flip_server/
H A Dspdy_ssl.h25 SSL* CreateSSLContext(SSL_CTX* ssl_ctx);
H A Dspdy_ssl.cc16 int ssl_set_npn_callback(SSL *s,
20 VLOG(1) << "SSL NPN callback: advertising protocols.";
42 LOG(FATAL) << "Unable to create SSL context";
50 LOG(FATAL) << "Unable to use cert.pem as SSL cert.";
56 LOG(FATAL) << "Unable to use key.pem as SSL key.";
66 VLOG(1) << "SSL CTX default cipher list: " << SSL_CIPHER_LIST;
69 VLOG(1) << "SSL CTX session expiry: " << session_expiration_time
74 VLOG(1) << "SSL CTX: Setting Release Buffers mode.";
90 SSL* CreateSSLContext(SSL_CTX* ssl_ctx) {
91 SSL* ss
[all...]
/external/openssl/apps/
H A Ds_apps.h5 * 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
168 void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret);
169 void MS_CALLBACK msg_cb(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg);
170 void MS_CALLBACK tlsext_cb(SSL *s, int client_server, int type,
175 int MS_CALLBACK generate_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int *cookie_len);
176 int MS_CALLBACK verify_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int cookie_len);
/external/chromium/chrome/browser/tab_contents/
H A Dtab_contents_ssl_helper.h18 class TabContentsSSLHelper : public RenderViewHostDelegate::SSL {
23 // RenderViewHostDelegate::SSL implementation:

Completed in 958 milliseconds

1234