22 #ifndef MBEDTLS_SSL_COOKIE_H
23 #define MBEDTLS_SSL_COOKIE_H
30 #if defined(MBEDTLS_THREADING_C)
41 #ifndef MBEDTLS_SSL_COOKIE_TIMEOUT
42 #define MBEDTLS_SSL_COOKIE_TIMEOUT 60
57 #if !defined(MBEDTLS_HAVE_TIME)
63 #if defined(MBEDTLS_THREADING_C)
77 int (*f_rng)(
void *,
unsigned char *,
size_t),
int mbedtls_ssl_cookie_write_t(void *ctx, unsigned char **p, unsigned char *end, const unsigned char *info, size_t ilen)
Callback type: generate a cookie.
int mbedtls_ssl_cookie_setup(mbedtls_ssl_cookie_ctx *ctx, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Setup cookie context (generate keys)
int mbedtls_ssl_cookie_check_t(void *ctx, const unsigned char *cookie, size_t clen, const unsigned char *info, size_t ilen)
Callback type: verify a cookie.
mbedtls_ssl_cookie_check_t mbedtls_ssl_cookie_check
Verify cookie, see mbedtls_ssl_cookie_write_t.
#define MBEDTLS_PRIVATE(member)
Context for the default cookie functions.
void mbedtls_ssl_cookie_set_timeout(mbedtls_ssl_cookie_ctx *ctx, unsigned long delay)
Set expiration delay for cookies (Default MBEDTLS_SSL_COOKIE_TIMEOUT)
Threading abstraction layer.
Macro wrapper for struct's memebrs.
mbedtls_ssl_cookie_write_t mbedtls_ssl_cookie_write
Generate cookie, see mbedtls_ssl_cookie_write_t.
Build-time configuration info.
struct mbedtls_ssl_cookie_ctx mbedtls_ssl_cookie_ctx
Context for the default cookie functions.
void mbedtls_ssl_cookie_free(mbedtls_ssl_cookie_ctx *ctx)
Free cookie context.
void mbedtls_ssl_cookie_init(mbedtls_ssl_cookie_ctx *ctx)
Initialize cookie context.