HomeSort by relevance Sort by last modified time
    Searched refs:SSL (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /external/openssl/ssl/
ssl_locl.h 0 /* ssl/ssl_locl.h */
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
165 #include <openssl/ssl.h>
505 RSA *(*rsa_tmp_cb)(SSL *ssl,int is_export,int keysize);
509 DH *(*dh_tmp_cb)(SSL *ssl,int is_export,int keysize)
    [all...]
srtp.h 0 /* ssl/tls1.h */
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
136 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
137 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
139 STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl); variable
140 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s)
    [all...]
ssl.h 0 /* ssl/ssl.h */
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
336 /* As of OpenSSL 1.0.0, ssl_create_cipher_list() in ssl/ssl_ciph.c always
382 typedef int (*tls_session_ticket_ext_cb_fn)(SSL *s, const unsigned char *data, int len, void *arg);
383 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);
413 int (*ssl_new)(SSL *s)
    [all...]
ssl_lib.c 1 /*! \file ssl/ssl_lib.c
2 * \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
    [all...]
  /external/openssl/include/openssl/
srtp.h 0 /* ssl/tls1.h */
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
136 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
137 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
139 STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl); variable
140 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s)
    [all...]
ssl.h 0 /* ssl/ssl.h */
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
336 /* As of OpenSSL 1.0.0, ssl_create_cipher_list() in ssl/ssl_ciph.c always
382 typedef int (*tls_session_ticket_ext_cb_fn)(SSL *s, const unsigned char *data, int len, void *arg);
383 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);
413 int (*ssl_new)(SSL *s)
    [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
ssl_locl.h 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
158 #include <openssl/ssl.h>
368 /* Check if an SSL structure is using DTLS */
432 /* Set if CERT_PKEY can be used with current SSL session: e.g.
460 DH *(*dh_tmp_cb)(SSL *ssl,int is_export,int keysize);
463 EC_KEY *(*ecdh_tmp_cb)(SSL *ssl,int is_export,int keysize)
    [all...]
s23_lib.c 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
64 int ssl23_read(SSL *s, void *buf, int len)
75 OPENSSL_PUT_ERROR(SSL, ssl23_read, SSL_R_SSL_HANDSHAKE_FAILURE);
87 int ssl23_peek(SSL *s, void *buf, int len)
98 OPENSSL_PUT_ERROR(SSL, ssl23_peek, SSL_R_SSL_HANDSHAKE_FAILURE);
110 int ssl23_write(SSL *s, const void *buf, int len)
121 OPENSSL_PUT_ERROR(SSL, ssl23_write, SSL_R_SSL_HANDSHAKE_FAILURE)
    [all...]
ssl_rsa.c 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
71 int SSL_use_certificate(SSL *ssl, X509 *x)
75 OPENSSL_PUT_ERROR(SSL, SSL_use_certificate, ERR_R_PASSED_NULL_PARAMETER);
78 if (!ssl_cert_inst(&ssl->cert))
80 OPENSSL_PUT_ERROR(SSL, SSL_use_certificate, ERR_R_MALLOC_FAILURE);
83 return(ssl_set_cert(ssl->cert,x))
    [all...]
ssl_lib.c 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
157 (int (*)(SSL *,int))ssl_undefined_function,
158 (int (*)(SSL *, unsigned char *, int))ssl_undefined_function,
160 (int (*)(SSL *, unsigned char *, unsigned char *, int))ssl_undefined_function,
161 (int (*)(SSL*, int))ssl_undefined_function,
162 (int (*)(SSL *, const char*, int, unsigned char *))ssl_undefined_function,
164 (int (*)(SSL *, int, unsigned char *))ssl_undefined_function
    [all...]
t1_reneg.c 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
119 int ssl_add_clienthello_renegotiate_ext(SSL *s, unsigned char *p, int *len,
126 OPENSSL_PUT_ERROR(SSL, ssl_add_clienthello_renegotiate_ext, SSL_R_RENEGOTIATE_EXT_TOO_LONG);
150 int ssl_parse_clienthello_renegotiate_ext(SSL *s, CBS *cbs, int *out_alert)
157 OPENSSL_PUT_ERROR(SSL, ssl_parse_clienthello_renegotiate_ext, SSL_R_RENEGOTIATION_ENCODING_ERR);
167 OPENSSL_PUT_ERROR(SSL, ssl_parse_clienthello_renegotiate_ext, SSL_R_RENEGOTIATION_MISMATCH);
178 int ssl_add_serverhello_renegotiate_ext(SSL *s, unsigned char *p, int *len
    [all...]
d1_srtp.c 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
203 OPENSSL_PUT_ERROR(SSL, ssl_ctx_make_profiles, SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES);
218 OPENSSL_PUT_ERROR(SSL, ssl_ctx_make_profiles, SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE);
236 int SSL_set_tlsext_use_srtp(SSL *s,const char *profiles)
243 STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *s)
261 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s)
268 int ssl_add_clienthello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen
    [all...]
s23_srvr.c 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
122 static int ssl23_get_client_hello(SSL *s);
123 static int ssl23_get_v2_client_hello(SSL *s);
144 int ssl23_accept(SSL *s)
147 void (*cb)(const SSL *ssl,int type,int val)=NULL;
232 OPENSSL_PUT_ERROR(SSL, ssl23_accept, SSL_R_UNKNOWN_STATE)
    [all...]
s3_clnt.c 0 /* ssl/s3_clnt.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
183 int ssl3_connect(SSL *s)
186 void (*cb)(const SSL *ssl,int type,int val)=NULL;
222 OPENSSL_PUT_ERROR(SSL, ssl3_connect, ERR_R_INTERNAL_ERROR);
580 OPENSSL_PUT_ERROR(SSL, ssl3_connect, SSL_R_UNKNOWN_STATE)
    [all...]
s3_pkt.c 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
122 static int do_ssl3_write(SSL *s, int type, const unsigned char *buf,
124 static int ssl3_get_record(SSL *s);
126 int ssl3_read_n(SSL *s, int n, int max, int extend)
216 OPENSSL_PUT_ERROR(SSL, ssl3_read_n, ERR_R_INTERNAL_ERROR);
245 OPENSSL_PUT_ERROR(SSL, ssl3_read_n, SSL_R_READ_BIO_NOT_SET);
287 * ssl->s3->rrec.type - is the type of recor
    [all...]
s3_srvr.c 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
189 int ssl3_accept(SSL *s)
193 void (*cb)(const SSL *ssl,int type,int val)=NULL;
211 OPENSSL_PUT_ERROR(SSL, ssl3_accept, SSL_R_NO_CERTIFICATE_SET);
235 OPENSSL_PUT_ERROR(SSL, ssl3_accept, ERR_R_INTERNAL_ERROR);
281 OPENSSL_PUT_ERROR(SSL, ssl3_accept, SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED)
    [all...]