HomeSort by relevance Sort by last modified time
    Searched full:ssl_session (Results 1 - 25 of 29) sorted by null

1 2

  /external/openssl/ssl/
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);
150 SSL_SESSION *SSL_get_session(const SSL *ssl)
156 SSL_SESSION *SSL_get1_session(SSL *ssl)
159 SSL_SESSION *sess;
178 int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg)
183 void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx)
188 SSL_SESSION *SSL_SESSION_new(void)
190 SSL_SESSION *ss
    [all...]
ssl.h 368 typedef struct ssl_session_st SSL_SESSION;
771 DECLARE_LHASH_OF(SSL_SESSION);
782 LHASH_OF(SSL_SESSION) *sessions;
    [all...]
ssl_txt.c 90 int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *x)
107 int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
ssl_asn1.c 122 int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp)
379 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
386 M_ASN1_D2I_vars(a,SSL_SESSION *,SSL_SESSION_new);
dtls1.h 136 SSL_SESSION *session;
ssl_lib.c 450 SSL_SESSION r, *p;
1126 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
    [all...]
t1_lib.c 125 SSL_SESSION **psess);
    [all...]
s2_clnt.c 618 SSL_SESSION *sess;
1002 /* Make sure we were not trying to re-use an old SSL_SESSION
s3_pkt.c 289 SSL_SESSION *sess;
642 SSL_SESSION *sess;
    [all...]
ssl_locl.h 837 int ssl_cipher_get_evp(const SSL_SESSION *s,const EVP_CIPHER **enc,
    [all...]
d1_pkt.c 380 SSL_SESSION *sess;
    [all...]
d1_clnt.c 782 SSL_SESSION *sess = s->session;
    [all...]
  /external/openssl/patches/
jsse.patch 5 SSL_SESSION *session;
39 SSL_SESSION *SSL_SESSION_new(void);
40 const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s,
42 +const char * SSL_SESSION_get_version(const SSL_SESSION *s);
43 unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *s);
45 int SSL_SESSION_print_fp(FILE *fp,const SSL_SESSION *ses);
47 void SSL_SESSION_free(SSL_SESSION *ses);
48 int i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp);
49 int SSL_set_session(SSL *to, SSL_SESSION *session);
51 int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c)
    [all...]
channelid.patch 559 @@ -1022,6 +1028,10 @@ LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(
568 void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx, int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess));
569 int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))(struct ssl_st *ssl, SSL_SESSION *sess);
584 @@ -1605,6 +1622,9 @@ DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION)
594 @@ -1652,6 +1672,25 @@ DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION)
    [all...]
  /external/openssl/apps/
sess_id.c 86 static SSL_SESSION *load_sess_id(char *file, int format);
92 SSL_SESSION *x=NULL;
183 SSL_SESSION *s;
254 BIO_printf(bio_err,"unable to write SSL_SESSION\n");
281 static SSL_SESSION *load_sess_id(char *infile, int format)
283 SSL_SESSION *x=NULL;
313 BIO_printf(bio_err,"unable to load SSL_SESSION\n");
  /external/openssl/include/openssl/
ssl.h 368 typedef struct ssl_session_st SSL_SESSION;
771 DECLARE_LHASH_OF(SSL_SESSION);
782 LHASH_OF(SSL_SESSION) *sessions;
    [all...]
dtls1.h 136 SSL_SESSION *session;
safestack.h     [all...]
crypto.h 293 * The current classes are SSL_CTX, SSL, SSL_SESSION, and a few more */
  /external/chromium/net/socket/
ssl_client_socket_openssl.cc 204 // OpenSSL manages a cache of SSL_SESSION, this class provides the application
211 void OnSessionAdded(const HostPortPair& host_and_port, SSL_SESSION* session) {
214 crypto::ScopedOpenSSL<SSL_SESSION, SSL_SESSION_free> session_to_free;
233 void OnSessionRemoved(SSL_SESSION* session) {
236 crypto::ScopedOpenSSL<SSL_SESSION, SSL_SESSION_free> session_to_free;
260 SSL_SESSION* session = it->second;
276 typedef std::map<HostPortPair, SSL_SESSION*> HostPortMap;
277 typedef std::map<SSL_SESSION*, HostPortMap::iterator> SessionMap;
329 static int NewSessionCallbackStatic(SSL* ssl, SSL_SESSION* session) {
333 int NewSessionCallback(SSL* ssl, SSL_SESSION* session)
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp 671 static SSL_SESSION* to_SSL_SESSION(JNIEnv* env, jlong ssl_session_address, bool throwIfNull) {
672 SSL_SESSION* ssl_session local
673 = reinterpret_cast<SSL_SESSION*>(static_cast<uintptr_t>(ssl_session_address));
674 if ((ssl_session == NULL) && throwIfNull) {
675 JNI_TRACE("ssl_session == null");
676 jniThrowNullPointerException(env, "ssl_session == null");
678 return ssl_session;
6700 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, false); local
7035 SSL_SESSION* ssl_session = SSL_get1_session(ssl); local
7667 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
7687 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
7704 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
7718 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
7733 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
7748 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
7765 SSL_SESSION* ssl_session = d2i_SSL_SESSION(NULL, &ucp, bytes.size()); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSessionImpl.java 105 * SSL_SESSION. It can change during the lifetime of the session
213 * field based on the native SSL_SESSION
  /external/openssl/crypto/stack/
safestack.h     [all...]
  /external/openssl/crypto/
cryptlib.c 143 "ssl_session",
crypto.h 293 * The current classes are SSL_CTX, SSL, SSL_SESSION, and a few more */

Completed in 527 milliseconds

1 2