mbed TLS v1.3.17
ssl_cache.h
Go to the documentation of this file.
1 
24 #ifndef POLARSSL_SSL_CACHE_H
25 #define POLARSSL_SSL_CACHE_H
26 
27 #include "ssl.h"
28 
29 #if defined(POLARSSL_THREADING_C)
30 #include "threading.h"
31 #endif
32 
41 #if !defined(SSL_CACHE_DEFAULT_TIMEOUT)
42 #define SSL_CACHE_DEFAULT_TIMEOUT 86400
43 #endif
44 
45 #if !defined(SSL_CACHE_DEFAULT_MAX_ENTRIES)
46 #define 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(POLARSSL_HAVE_TIME)
64  time_t timestamp;
65 #endif
67 #if defined(POLARSSL_X509_CRT_PARSE_C)
69 #endif
71 };
72 
77 {
79  int timeout;
81 #if defined(POLARSSL_THREADING_C)
83 #endif
84 };
85 
91 void ssl_cache_init( ssl_cache_context *cache );
92 
100 int ssl_cache_get( void *data, ssl_session *session );
101 
109 int ssl_cache_set( void *data, const ssl_session *session );
110 
111 #if defined(POLARSSL_HAVE_TIME)
112 
121 void ssl_cache_set_timeout( ssl_cache_context *cache, int timeout );
122 #endif /* POLARSSL_HAVE_TIME */
123 
131 void ssl_cache_set_max_entries( ssl_cache_context *cache, int max );
132 
138 void ssl_cache_free( ssl_cache_context *cache );
139 
140 #ifdef __cplusplus
141 }
142 #endif
143 
144 #endif /* ssl_cache.h */
threading_mutex_t mutex
Definition: ssl_cache.h:82
void ssl_cache_init(ssl_cache_context *cache)
Initialize an SSL cache context.
ssl_cache_entry * next
Definition: ssl_cache.h:70
ssl_cache_entry * chain
Definition: ssl_cache.h:78
int ssl_cache_get(void *data, ssl_session *session)
Cache get callback implementation (Thread-safe if POLARSSL_THREADING_C is enabled) ...
x509_buf peer_cert
Definition: ssl_cache.h:68
void ssl_cache_free(ssl_cache_context *cache)
Free referenced items in a cache context and clear memory.
Cache context.
Definition: ssl_cache.h:76
This structure is used for storing cache entries.
Definition: ssl_cache.h:61
Threading abstraction layer.
ssl_session session
Definition: ssl_cache.h:66
void ssl_cache_set_timeout(ssl_cache_context *cache, int timeout)
Set the cache timeout (Default: SSL_CACHE_DEFAULT_TIMEOUT (1 day))
pthread_mutex_t threading_mutex_t
Definition: threading.h:45
Type-length-value structure that allows for ASN1 using DER.
Definition: asn1.h:121
void ssl_cache_set_max_entries(ssl_cache_context *cache, int max)
Set the maximum number of cache entries (Default: SSL_CACHE_DEFAULT_MAX_ENTRIES (50)) ...
time_t timestamp
Definition: ssl_cache.h:64
SSL/TLS functions.
int ssl_cache_set(void *data, const ssl_session *session)
Cache set callback implementation (Thread-safe if POLARSSL_THREADING_C is enabled) ...