mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 19:05:37 +01:00
Update dependencies and documentation
This commit is contained in:
parent
1e9c4db524
commit
4214e3a0eb
@ -420,9 +420,7 @@
|
|||||||
#error "MBEDTLS_SSL_EXTENDED_MASTER_SECRET defined, but not all prerequsites"
|
#error "MBEDTLS_SSL_EXTENDED_MASTER_SECRET defined, but not all prerequsites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_SSL_TICKET_C) && \
|
#if defined(MBEDTLS_SSL_TICKET_C) && !defined(MBEDTLS_CIPHER_C)
|
||||||
( !defined(MBEDTLS_AES_C) || !defined(MBEDTLS_SHA256_C) || \
|
|
||||||
!defined(MBEDTLS_CIPHER_MODE_CBC) )
|
|
||||||
#error "MBEDTLS_SSL_TICKET_C defined, but not all prerequisites"
|
#error "MBEDTLS_SSL_TICKET_C defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -2095,9 +2095,7 @@
|
|||||||
* Module: library/ssl_ticket.c
|
* Module: library/ssl_ticket.c
|
||||||
* Caller:
|
* Caller:
|
||||||
*
|
*
|
||||||
* Requires: MBEDTLS_AES_C
|
* Requires: MBEDTLS_CIPHER_C
|
||||||
* MBEDTLS_SHA256_C
|
|
||||||
* MBEDTLS_CIPHER_MODE_CBC
|
|
||||||
*/
|
*/
|
||||||
#define MBEDTLS_SSL_TICKET_C
|
#define MBEDTLS_SSL_TICKET_C
|
||||||
|
|
||||||
|
@ -24,6 +24,12 @@
|
|||||||
#ifndef MBEDTLS_SSL_TICKET_H
|
#ifndef MBEDTLS_SSL_TICKET_H
|
||||||
#define MBEDTLS_SSL_TICKET_H
|
#define MBEDTLS_SSL_TICKET_H
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This implementation of the session ticket callbacks includes key
|
||||||
|
* management, rotating the keys periodically in order to preserve forward
|
||||||
|
* secrecy, when MBEDTLS_HAVE_TIME is defined.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "ssl.h"
|
#include "ssl.h"
|
||||||
#include "cipher.h"
|
#include "cipher.h"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user