mbed TLS v3.3.0
Loading...
Searching...
No Matches
ssl_cookie.h
Go to the documentation of this file.
1
6/*
7 * Copyright The Mbed TLS Contributors
8 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
21 */
22#ifndef MBEDTLS_SSL_COOKIE_H
23#define MBEDTLS_SSL_COOKIE_H
25
26#include "mbedtls/build_info.h"
27
28#include "mbedtls/ssl.h"
29
30#if !defined(MBEDTLS_USE_PSA_CRYPTO)
31#if defined(MBEDTLS_THREADING_C)
32#include "mbedtls/threading.h"
33#endif
34#endif /* !MBEDTLS_USE_PSA_CRYPTO */
35
43#ifndef MBEDTLS_SSL_COOKIE_TIMEOUT
44#define MBEDTLS_SSL_COOKIE_TIMEOUT 60
45#endif
46
49#ifdef __cplusplus
50extern "C" {
51#endif
52
57{
58#if defined(MBEDTLS_USE_PSA_CRYPTO)
60 psa_algorithm_t MBEDTLS_PRIVATE(psa_hmac_alg);
61#else
63#endif /* MBEDTLS_USE_PSA_CRYPTO */
64#if !defined(MBEDTLS_HAVE_TIME)
65 unsigned long MBEDTLS_PRIVATE(serial);
66#endif
67 unsigned long MBEDTLS_PRIVATE(timeout);
70#if !defined(MBEDTLS_USE_PSA_CRYPTO)
71#if defined(MBEDTLS_THREADING_C)
72 mbedtls_threading_mutex_t MBEDTLS_PRIVATE(mutex);
73#endif
74#endif /* !MBEDTLS_USE_PSA_CRYPTO */
76
81
86 int (*f_rng)(void *, unsigned char *, size_t),
87 void *p_rng );
88
99
104
109
114
115#ifdef __cplusplus
116}
117#endif
118
119#endif /* ssl_cookie.h */
Build-time configuration info.
uint32_t psa_algorithm_t
Encoding of a cryptographic algorithm.
Definition: crypto_types.h:138
psa_key_id_t mbedtls_svc_key_id_t
Definition: crypto_types.h:296
Macro wrapper for struct's members.
#define MBEDTLS_PRIVATE(member)
SSL/TLS functions.
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.
Definition: ssl.h:2769
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.
Definition: ssl.h:2786
Threading abstraction layer.