Go to the documentation of this file.
24 #ifndef MBEDTLS_SSL_TICKET_H
25 #define MBEDTLS_SSL_TICKET_H
27 #if !defined(MBEDTLS_CONFIG_FILE)
30 #include MBEDTLS_CONFIG_FILE
42 #if defined(MBEDTLS_THREADING_C)
72 int (*
f_rng)(
void *,
unsigned char *, size_t);
75 #if defined(MBEDTLS_THREADING_C)
113 int (*f_rng)(
void *,
unsigned char *,
size_t),
void *p_rng,
Information for session ticket protection.
mbedtls_ssl_ticket_write_t mbedtls_ssl_ticket_write
Implementation of the ticket write callback.
int mbedtls_ssl_ticket_setup(mbedtls_ssl_ticket_context *ctx, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng, mbedtls_cipher_type_t cipher, uint32_t lifetime)
Prepare context to be actually used.
void mbedtls_ssl_ticket_free(mbedtls_ssl_ticket_context *ctx)
Free a context's content and zeroize it.
int mbedtls_ssl_ticket_write_t(void *p_ticket, const mbedtls_ssl_session *session, unsigned char *start, const unsigned char *end, size_t *tlen, uint32_t *lifetime)
Callback type: generate and write session ticket.
void mbedtls_ssl_ticket_init(mbedtls_ssl_ticket_context *ctx)
Initialize a ticket context. (Just make it ready for mbedtls_ssl_ticket_setup() or mbedtls_ssl_ticket...
int mbedtls_ssl_ticket_parse_t(void *p_ticket, mbedtls_ssl_session *session, unsigned char *buf, size_t len)
Callback type: parse and load session ticket.
mbedtls_cipher_context_t ctx
struct mbedtls_ssl_ticket_key mbedtls_ssl_ticket_key
Information for session ticket protection.
Context for session ticket handling functions.
This file contains an abstraction interface for use with the cipher primitives provided by the librar...
mbedtls_ssl_ticket_key keys[2]
Threading abstraction layer.
Configuration options (set of defines)
int(* f_rng)(void *, unsigned char *, size_t)
mbedtls_ssl_ticket_parse_t mbedtls_ssl_ticket_parse
Implementation of the ticket parse callback.
struct mbedtls_ssl_ticket_context mbedtls_ssl_ticket_context
Context for session ticket handling functions.
mbedtls_cipher_type_t
Supported {cipher type, cipher mode} pairs.
mbedtls_threading_mutex_t mutex