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

1 2

  /external/chromium/net/tools/flip_server/
spdy_ssl.h 16 SSL_CTX* ssl_ctx; member in struct:net::SSLState
25 SSL* CreateSSLContext(SSL_CTX* ssl_ctx);
spdy_ssl.cc 39 state->ssl_ctx = SSL_CTX_new(state->ssl_method);
40 if (!state->ssl_ctx) {
45 SSL_CTX_set_options(state->ssl_ctx,
47 if (SSL_CTX_use_certificate_chain_file(state->ssl_ctx,
52 if (SSL_CTX_use_PrivateKey_file(state->ssl_ctx,
58 if (!SSL_CTX_check_private_key(state->ssl_ctx)) {
63 SSL_CTX_set_next_protos_advertised_cb(state->ssl_ctx,
67 SSL_CTX_set_cipher_list(state->ssl_ctx, SSL_CIPHER_LIST);
71 SSL_CTX_set_timeout(state->ssl_ctx, session_expiration_time);
75 SSL_CTX_set_mode(state->ssl_ctx, SSL_MODE_RELEASE_BUFFERS)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
openssladapter.h 35 typedef struct ssl_ctx_st SSL_CTX;
85 static bool ConfigureTrustedRootCertificates(SSL_CTX* ctx);
86 static SSL_CTX* SetupSSLContext();
95 SSL_CTX* ssl_ctx_;
opensslstreamadapter.h 36 typedef struct ssl_ctx_st SSL_CTX;
133 SSL_CTX* SetupSSLContext();
153 SSL_CTX* ssl_ctx_;
opensslidentity.h 40 typedef struct ssl_ctx_st SSL_CTX;
119 bool ConfigureIdentity(SSL_CTX* ctx);
openssladapter.cc 824 bool OpenSSLAdapter::ConfigureTrustedRootCertificates(SSL_CTX* ctx) {
842 SSL_CTX*
844 SSL_CTX* ctx = SSL_CTX_new(TLSv1_client_method());
opensslstreamadapter.cc 524 SSL_CTX* OpenSSLStreamAdapter::SetupSSLContext() {
525 SSL_CTX* ctx = SSL_CTX_new(role_ == SSL_CLIENT ? TLSv1_client_method()
  /external/openssl/include/openssl/
srtp.h 133 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles);
ssl.h 363 * in SSL_CTX. */
430 long (*ssl_ctx_ctrl)(SSL_CTX *ctx,int cmd,long larg,void *parg);
441 long (*ssl_ctx_callback_ctrl)(SSL_CTX *s, int cb_id, void (*fp)(void));
688 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg));
721 int SSL_CTX_SRP_CTX_init(SSL_CTX *ctx);
723 int SSL_CTX_SRP_CTX_free(SSL_CTX *ctx);
739 /* This callback type is used inside SSL_CTX, SSL, and in the functions that set
    [all...]
ossl_typ.h 173 typedef struct ssl_ctx_st SSL_CTX;
  /external/openssl/ssl/
srtp.h 133 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles);
ssl.h 363 * in SSL_CTX. */
430 long (*ssl_ctx_ctrl)(SSL_CTX *ctx,int cmd,long larg,void *parg);
441 long (*ssl_ctx_callback_ctrl)(SSL_CTX *s, int cb_id, void (*fp)(void));
688 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg));
721 int SSL_CTX_SRP_CTX_init(SSL_CTX *ctx);
723 int SSL_CTX_SRP_CTX_free(SSL_CTX *ctx);
739 /* This callback type is used inside SSL_CTX, SSL, and in the functions that set
    [all...]
ssl_sess.c 146 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s);
147 static void SSL_SESSION_list_add(SSL_CTX *ctx,SSL_SESSION *s);
148 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck);
640 int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c)
645 /* add just 1 reference count for the SSL_CTX's session cache
705 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
710 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
898 long SSL_CTX_set_timeout(SSL_CTX *s, long t)
907 long SSL_CTX_get_timeout(const SSL_CTX *s)
970 SSL_CTX *ctx
    [all...]
ssl_lib.c 258 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,const SSL_METHOD *meth)
275 SSL *SSL_new(SSL_CTX *ctx)
307 * called (and the direct reference to the per-SSL_CTX
311 * Now we don't look at the SSL_CTX's CERT after having
398 int SSL_CTX_set_session_id_context(SSL_CTX *ctx,const unsigned char *sid_ctx,
426 int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
476 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
486 int SSL_CTX_set_trust(SSL_CTX *s, int trust)
496 int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm)
781 int SSL_CTX_get_verify_mode(const SSL_CTX *ctx
    [all...]
ssl_rsa.c 379 int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x)
454 int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type)
503 int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, const unsigned char *d)
521 int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa)
551 int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, int type)
598 int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, const unsigned char *d, long len)
617 int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey)
633 int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type)
680 int SSL_CTX_use_PrivateKey_ASN1(int type, SSL_CTX *ctx, const unsigned char *d,
741 int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file
    [all...]
tls_srp.c 132 SSL_CTX *ctx;
467 int SSL_CTX_set_srp_username(SSL_CTX *ctx,char *name)
472 int SSL_CTX_set_srp_password(SSL_CTX *ctx,char *password)
477 int SSL_CTX_set_srp_strength(SSL_CTX *ctx, int strength)
483 int SSL_CTX_set_srp_verify_param_callback(SSL_CTX *ctx, int (*cb)(SSL *,void *))
489 int SSL_CTX_set_srp_cb_arg(SSL_CTX *ctx, void *arg)
494 int SSL_CTX_set_srp_username_callback(SSL_CTX *ctx,
501 int SSL_CTX_set_srp_client_pwd_callback(SSL_CTX *ctx, char *(*cb)(SSL *,void *))
s2_lib.c 405 long ssl2_ctx_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
410 long ssl2_ctx_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp)(void))
bio_ssl.c 520 BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx)
539 BIO *BIO_new_ssl_connect(SSL_CTX *ctx)
557 BIO *BIO_new_ssl(SSL_CTX *ctx, int client)
ssl_cert.c 322 * chain is held inside SSL_CTX */
600 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,STACK_OF(X509_NAME) *name_list)
605 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx)
653 int SSL_CTX_add_client_CA(SSL_CTX *ctx,X509 *x)
  /external/openssl/crypto/threads/
mttest.c 113 void do_threads(SSL_CTX *s_ctx,SSL_CTX *c_ctx);
151 static void print_stats(FILE *fp, SSL_CTX *ctx)
193 SSL_CTX *s_ctx=NULL;
194 SSL_CTX *c_ctx=NULL;
340 fprintf(stderr,"Client SSL_CTX stats then free it\n");
346 fprintf(stderr,"Server SSL_CTX stats then free it\n");
370 int ndoit(SSL_CTX *ssl_ctx[2])
376 ctx[0]=(char *)ssl_ctx[0]
765 SSL_CTX *ssl_ctx[2]; local
893 SSL_CTX *ssl_ctx[2]; local
992 SSL_CTX *ssl_ctx[2]; local
1091 SSL_CTX *ssl_ctx[2]; local
1183 SSL_CTX *ssl_ctx[2]; local
1277 SSL_CTX *ssl_ctx[2]; local
    [all...]
  /external/openssl/apps/
s_apps.h 156 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
157 int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key);
ciphers.c 91 SSL_CTX *ctx=NULL;
s_cb.c 198 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file)
253 int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key)
  /external/openssl/crypto/
ossl_typ.h 173 typedef struct ssl_ctx_st SSL_CTX;
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 435 static int tls_cryptoapi_ca_cert(SSL_CTX *ssl_ctx, SSL *ssl, const char *name)
481 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
706 SSL_CTX *ssl;
793 void tls_deinit(void *ssl_ctx)
795 SSL_CTX *ssl = ssl_ctx;
920 int tls_get_errors(void *ssl_ctx)
934 struct tls_connection * tls_connection_init(void *ssl_ctx)
936 SSL_CTX *ssl = ssl_ctx
1318 SSL_CTX *ssl_ctx = _ssl_ctx; local
1352 SSL_CTX *ssl_ctx = _ssl_ctx; local
1909 SSL_CTX *ssl_ctx = _ssl_ctx; local
1981 SSL_CTX *ssl_ctx = _ssl_ctx; local
2808 SSL_CTX *ssl_ctx = tls_ctx; local
    [all...]

Completed in 1504 milliseconds

1 2