• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asus-wl-520gu-7.0.1.45/src/router/libbcmcrypto/openssl/

Lines Matching refs:SSL_SESSION

475 	} SSL_SESSION;
648 int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess);
649 void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess);
650 SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl,
889 /* These are the ones being used, the ones in SSL_SESSION are
920 SSL_SESSION *session;
1057 #define d2i_SSL_SESSION_bio(bp,s_id) ASN1_d2i_bio_of(SSL_SESSION,SSL_SESSION_new,d2i_SSL_SESSION,bp,s_id)
1058 #define i2d_SSL_SESSION_bio(bp,s_id) ASN1_i2d_bio_of(SSL_SESSION,i2d_SSL_SESSION,bp,s_id)
1059 #define PEM_read_SSL_SESSION(fp,x,cb,u) (SSL_SESSION *)PEM_ASN1_read( \
1061 #define PEM_read_bio_SSL_SESSION(bp,x,cb,u) PEM_ASN1_read_bio_of(SSL_SESSION,d2i_SSL_SESSION,PEM_STRING_SSL_SESSION,bp,x,cb,u)
1066 PEM_ASN1_write_bio_of(SSL_SESSION,i2d_SSL_SESSION,PEM_STRING_SSL_SESSION,bp,x,NULL,NULL,0,NULL,NULL)
1268 long SSL_SESSION_get_time(const SSL_SESSION *s);
1269 long SSL_SESSION_set_time(SSL_SESSION *s, long t);
1270 long SSL_SESSION_get_timeout(const SSL_SESSION *s);
1271 long SSL_SESSION_set_timeout(SSL_SESSION *s, long t);
1274 SSL_SESSION *SSL_SESSION_new(void);
1275 unsigned long SSL_SESSION_hash(const SSL_SESSION *a);
1276 int SSL_SESSION_cmp(const SSL_SESSION *a,const SSL_SESSION *b);
1277 const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, unsigned int *len);
1279 int SSL_SESSION_print_fp(FILE *fp,const SSL_SESSION *ses);
1282 int SSL_SESSION_print(BIO *fp,const SSL_SESSION *ses);
1284 void SSL_SESSION_free(SSL_SESSION *ses);
1285 int i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp);
1286 int SSL_set_session(SSL *to, SSL_SESSION *session);
1287 int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c);
1288 int SSL_CTX_remove_session(SSL_CTX *,SSL_SESSION *c);
1293 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a,const unsigned char **pp,
1421 SSL_SESSION *SSL_get_session(const SSL *ssl);
1422 SSL_SESSION *SSL_get1_session(SSL *ssl); /* obtain a reference count */
1437 int SSL_SESSION_set_ex_data(SSL_SESSION *ss,int idx,void *data);
1438 void *SSL_SESSION_get_ex_data(const SSL_SESSION *ss,int idx);