Searched refs:cache (Results 1 – 15 of 15) sorted by relevance
/mbedtls-development/library/ |
A D | ssl_cache.c | 67 if( cache->timeout != 0 && in ssl_cache_find_entry() 170 if( cache->timeout != 0 && in ssl_cache_pick_writing_slot() 186 if( count < cache->max_entries ) in ssl_cache_pick_writing_slot() 195 cache->chain = cur; in ssl_cache_pick_writing_slot() 215 if( cache->chain == NULL ) in ssl_cache_pick_writing_slot() 218 old = cache->chain; in ssl_cache_pick_writing_slot() 219 cache->chain = old->next; in ssl_cache_pick_writing_slot() 325 cache->timeout = timeout; in mbedtls_ssl_cache_set_timeout() 333 cache->max_entries = max; in mbedtls_ssl_cache_set_max_entries() 340 cur = cache->chain; in mbedtls_ssl_cache_free() [all …]
|
/mbedtls-development/include/mbedtls/ |
A D | ssl_cache.h | 95 void mbedtls_ssl_cache_init( mbedtls_ssl_cache_context *cache ); 138 void mbedtls_ssl_cache_set_timeout( mbedtls_ssl_cache_context *cache, int timeout ); 148 void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max ); 155 void mbedtls_ssl_cache_free( mbedtls_ssl_cache_context *cache );
|
/mbedtls-development/programs/ssl/ |
A D | ssl_server.c | 104 mbedtls_ssl_cache_context cache; in main() local 112 mbedtls_ssl_cache_init( &cache ); in main() 210 mbedtls_ssl_conf_session_cache( &conf, &cache, in main() 384 mbedtls_ssl_cache_free( &cache ); in main()
|
A D | dtls_server.c | 117 mbedtls_ssl_cache_context cache; in main() local 126 mbedtls_ssl_cache_init( &cache ); in main() 224 mbedtls_ssl_conf_session_cache( &conf, &cache, in main() 414 mbedtls_ssl_cache_free( &cache ); in main()
|
A D | ssl_pthread_server.c | 329 mbedtls_ssl_cache_context cache; in main() local 337 mbedtls_ssl_cache_init( &cache ); in main() 435 mbedtls_ssl_conf_session_cache( &conf, &cache, in main() 504 mbedtls_ssl_cache_free( &cache ); in main()
|
A D | ssl_server2.c | 1334 mbedtls_ssl_cache_context cache; in main() local 1426 mbedtls_ssl_cache_init( &cache ); in main() 2695 mbedtls_ssl_cache_set_max_entries( &cache, opt.cache_max ); in main() 2698 mbedtls_ssl_cache_set_timeout( &cache, opt.cache_timeout ); in main() 2700 mbedtls_ssl_conf_session_cache( &conf, &cache, in main() 4011 mbedtls_ssl_cache_free( &cache ); in main()
|
/mbedtls-development/tests/scripts/ |
A D | docker_env.sh | 72 --cache-from=${DOCKER_IMAGE_TAG} \
|
/mbedtls-development/tests/ |
A D | Descriptions.txt | 21 covered by compat.sh: session resumption (using session cache or tickets),
|
/mbedtls-development/ |
A D | .travis.yml | 4 cache: ccache
|
A D | README.md | 170 CMake cache. This can be done with the following command using GNU find:
|
A D | ChangeLog | 76 * The getter and setter API of the SSL session cache (used for 798 fixes a local Lucky 13 cache attack found and reported by Tuba Yavuz, 1801 plaintext of messages under some conditions by using a cache attack 1812 previous entry) by using a cache attack targeting the SSL input record 2477 against side-channel attacks like the cache attack described in 3098 * Add countermeasure against "Lucky 13 strikes back" cache-based attack, 3697 * Add countermeasure against "Lucky 13 strikes back" cache-based attack, 3935 * The SSL session cache module (ssl_cache) now also retains peer_cert 4024 * Added simple SSL session cache implementation
|
/mbedtls-development/tests/docker/bionic/ |
A D | Dockerfile | 164 RUN pip3 install --no-cache-dir \
|
/mbedtls-development/docs/ |
A D | 3.0-migration-guide.md | 872 to configure a custom session cache implementation different 875 Those users will need to modify the API of their session cache 891 onwards, portable session cache implementations must not access fields of 893 find themselves unable to migrate their session cache functionality without
|
/mbedtls-development/doxygen/ |
A D | mbedtls.doxyfile | 344 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 345 # cache is used to resolve symbols given their name and scope. Since this can 347 # the code, doxygen keeps a cache of pre-resolved symbols. If the cache is too 348 # small doxygen will become slower. If the cache is too large, memory is wasted. 349 # The cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid 350 # range is 0..9, the default is 0, corresponding to a cache size of 2^16 = 65536
|
/mbedtls-development/docs/proposed/ |
A D | psa-driver-interface.md | 804 …d an operation on the key. The core may keep information about the key in cache, and successive ca…
|
Completed in 27 milliseconds