Lines Matching defs:ssl_session_st
479 struct ssl_session_st { struct
480 int ssl_version; /* what ssl version session info is being kept
482 size_t master_key_length;
485 unsigned char early_secret[EVP_MAX_MD_SIZE];
490 unsigned char master_key[TLS13_MAX_RESUMPTION_PSK_LENGTH];
492 size_t session_id_length;
493 unsigned char session_id[SSL_MAX_SSL_SESSION_ID_LENGTH];
499 size_t sid_ctx_length;
500 unsigned char sid_ctx[SSL_MAX_SID_CTX_LENGTH];
502 char *psk_identity_hint;
503 char *psk_identity;
510 int not_resumable;
512 EVP_PKEY *peer_rpk;
514 X509 *peer;
521 long verify_result; /* only for servers */
522 OSSL_TIME timeout;
523 OSSL_TIME time;
524 OSSL_TIME calc_timeout;
525 unsigned int compress_meth; /* Need to lookup the method */
526 const SSL_CIPHER *cipher;
527 unsigned long cipher_id; /* when ASN.1 loaded, this needs to be used to
529 unsigned int kex_group; /* TLS group from key exchange */
530 CRYPTO_EX_DATA ex_data; /* application specific data */
532 struct {
565 struct ssl_session_st *prev, *next; argument
566 CRYPTO_REF_COUNT references;