OPTIGA Trust M  1.1.0
C++ library for Optiga Trust M Chip Security Controller
ssl_cache.h
Go to the documentation of this file.
1 
6 /*
7  * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
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  * This file is part of mbed TLS (https://tls.mbed.org)
23  */
24 #ifndef MBEDTLS_SSL_CACHE_H
25 #define MBEDTLS_SSL_CACHE_H
26 
27 #include "ssl.h"
28 
29 #if defined(MBEDTLS_THREADING_C)
30 #include "threading.h"
31 #endif
32 
41 #if !defined(MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT)
42 #define MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT 86400
43 #endif
44 
45 #if !defined(MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES)
46 #define MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES 50
47 #endif
48 
49 /* \} name SECTION: Module settings */
50 
51 #ifdef __cplusplus
52 extern "C" {
53 #endif
54 
57 
62 {
63 #if defined(MBEDTLS_HAVE_TIME)
64  mbedtls_time_t timestamp;
65 #endif
67 #if defined(MBEDTLS_X509_CRT_PARSE_C)
68  mbedtls_x509_buf peer_cert;
69 #endif
71 };
72 
77 {
79  int timeout;
81 #if defined(MBEDTLS_THREADING_C)
82  mbedtls_threading_mutex_t mutex;
83 #endif
84 };
85 
92 
100 int mbedtls_ssl_cache_get( void *data, mbedtls_ssl_session *session );
101 
109 int mbedtls_ssl_cache_set( void *data, const mbedtls_ssl_session *session );
110 
111 #if defined(MBEDTLS_HAVE_TIME)
112 
121 void mbedtls_ssl_cache_set_timeout( mbedtls_ssl_cache_context *cache, int timeout );
122 #endif /* MBEDTLS_HAVE_TIME */
123 
132 
139 
140 #ifdef __cplusplus
141 }
142 #endif
143 
144 #endif /* ssl_cache.h */
Definition: ssl.h:789
time_t mbedtls_time_t
Definition: platform_time.h:53
mbedtls_ssl_cache_entry * chain
Definition: ssl_cache.h:78
Definition: asn1.h:134
Threading abstraction layer.
void mbedtls_ssl_cache_set_max_entries(mbedtls_ssl_cache_context *cache, int max)
Set the maximum number of cache entries (Default: MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES (50))
void mbedtls_ssl_cache_init(mbedtls_ssl_cache_context *cache)
Initialize an SSL cache context.
int mbedtls_ssl_cache_get(void *data, mbedtls_ssl_session *session)
Cache get callback implementation (Thread-safe if MBEDTLS_THREADING_C is enabled)
int mbedtls_ssl_cache_set(void *data, const mbedtls_ssl_session *session)
Cache set callback implementation (Thread-safe if MBEDTLS_THREADING_C is enabled)
void mbedtls_ssl_cache_free(mbedtls_ssl_cache_context *cache)
Free referenced items in a cache context and clear memory.
This structure is used for storing cache entries.
Definition: ssl_cache.h:61
int max_entries
Definition: ssl_cache.h:80
Cache context.
Definition: ssl_cache.h:76
int timeout
Definition: ssl_cache.h:79
SSL/TLS functions.
mbedtls_ssl_cache_entry * next
Definition: ssl_cache.h:70
mbedtls_ssl_session session
Definition: ssl_cache.h:66