mirror of
https://github.com/ARMmbed/mbedtls.git
synced 2025-05-09 16:41:19 +08:00
tls13: cli: Move definition of MBEDTLS_SSL_EARLY_DATA_STATE_xyz
Move definition of MBEDTLS_SSL_EARLY_DATA_STATE_xyz from ssl.h(public) to ssl_misc.h(private) even if that means we cannot use the enum type for early_data_state in ssl.h. Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
parent
894df384f4
commit
aa3593141b
@ -747,57 +747,6 @@ typedef enum {
|
|||||||
MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED,
|
MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED,
|
||||||
MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED,
|
MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED,
|
||||||
} mbedtls_ssl_early_data_status;
|
} mbedtls_ssl_early_data_status;
|
||||||
|
|
||||||
typedef enum {
|
|
||||||
/*
|
|
||||||
* The client has not sent the first ClientHello yet, the negotiation of early
|
|
||||||
* data has not started yet.
|
|
||||||
*/
|
|
||||||
MBEDTLS_SSL_EARLY_DATA_STATE_IDLE,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* In its ClientHello, the client has not included an early data indication
|
|
||||||
* extension.
|
|
||||||
*/
|
|
||||||
MBEDTLS_SSL_EARLY_DATA_STATE_NO_IND_SENT,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The client has sent an early data indication extension in its first
|
|
||||||
* ClientHello, it has not received the response (ServerHello or
|
|
||||||
* HelloRetryRequest) from the server yet. The transform to protect early data
|
|
||||||
* is not set either as for middlebox compatibility a dummy CCs may have to be
|
|
||||||
* sent in clear. Early data cannot be sent to the server yet.
|
|
||||||
*/
|
|
||||||
MBEDTLS_SSL_EARLY_DATA_STATE_IND_SENT,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The client has sent an early data indication extension in its first
|
|
||||||
* ClientHello, it has not received the response (ServerHello or
|
|
||||||
* HelloRetryRequest) from the server yet. The transform to protect early data
|
|
||||||
* has been set and early data can be written now.
|
|
||||||
*/
|
|
||||||
MBEDTLS_SSL_EARLY_DATA_STATE_CAN_WRITE,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The client has indicated the use of early data and the server has accepted
|
|
||||||
* it.
|
|
||||||
*/
|
|
||||||
MBEDTLS_SSL_EARLY_DATA_STATE_ACCEPTED,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The client has indicated the use of early data but the server has rejected
|
|
||||||
* it.
|
|
||||||
*/
|
|
||||||
MBEDTLS_SSL_EARLY_DATA_STATE_REJECTED,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The client has sent an early data indication extension in its first
|
|
||||||
* ClientHello, the server has accepted them and the client has received the
|
|
||||||
* server Finished message. It cannot send early data to the server anymore.
|
|
||||||
*/
|
|
||||||
MBEDTLS_SSL_EARLY_DATA_STATE_SERVER_FINISHED_RECEIVED,
|
|
||||||
|
|
||||||
} mbedtls_ssl_early_data_state;
|
|
||||||
#endif /* MBEDTLS_SSL_EARLY_DATA && MBEDTLS_SSL_CLI_C */
|
#endif /* MBEDTLS_SSL_EARLY_DATA && MBEDTLS_SSL_CLI_C */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1761,7 +1710,7 @@ struct mbedtls_ssl_context {
|
|||||||
* State of the negotiation and transfer of early data. Reset to
|
* State of the negotiation and transfer of early data. Reset to
|
||||||
* MBEDTLS_SSL_EARLY_DATA_STATE_IDLE when the context is reset.
|
* MBEDTLS_SSL_EARLY_DATA_STATE_IDLE when the context is reset.
|
||||||
*/
|
*/
|
||||||
mbedtls_ssl_early_data_state MBEDTLS_PRIVATE(early_data_state);
|
int MBEDTLS_PRIVATE(early_data_state);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
unsigned MBEDTLS_PRIVATE(badmac_seen); /*!< records with a bad MAC received */
|
unsigned MBEDTLS_PRIVATE(badmac_seen); /*!< records with a bad MAC received */
|
||||||
|
@ -2153,6 +2153,57 @@ int mbedtls_ssl_tls13_write_early_data_ext(mbedtls_ssl_context *ssl,
|
|||||||
|
|
||||||
int mbedtls_ssl_tls13_check_early_data_len(mbedtls_ssl_context *ssl,
|
int mbedtls_ssl_tls13_check_early_data_len(mbedtls_ssl_context *ssl,
|
||||||
size_t early_data_len);
|
size_t early_data_len);
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
/*
|
||||||
|
* The client has not sent the first ClientHello yet, the negotiation of early
|
||||||
|
* data has not started yet.
|
||||||
|
*/
|
||||||
|
MBEDTLS_SSL_EARLY_DATA_STATE_IDLE,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* In its ClientHello, the client has not included an early data indication
|
||||||
|
* extension.
|
||||||
|
*/
|
||||||
|
MBEDTLS_SSL_EARLY_DATA_STATE_NO_IND_SENT,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The client has sent an early data indication extension in its first
|
||||||
|
* ClientHello, it has not received the response (ServerHello or
|
||||||
|
* HelloRetryRequest) from the server yet. The transform to protect early data
|
||||||
|
* is not set either as for middlebox compatibility a dummy CCs may have to be
|
||||||
|
* sent in clear. Early data cannot be sent to the server yet.
|
||||||
|
*/
|
||||||
|
MBEDTLS_SSL_EARLY_DATA_STATE_IND_SENT,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The client has sent an early data indication extension in its first
|
||||||
|
* ClientHello, it has not received the response (ServerHello or
|
||||||
|
* HelloRetryRequest) from the server yet. The transform to protect early data
|
||||||
|
* has been set and early data can be written now.
|
||||||
|
*/
|
||||||
|
MBEDTLS_SSL_EARLY_DATA_STATE_CAN_WRITE,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The client has indicated the use of early data and the server has accepted
|
||||||
|
* it.
|
||||||
|
*/
|
||||||
|
MBEDTLS_SSL_EARLY_DATA_STATE_ACCEPTED,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The client has indicated the use of early data but the server has rejected
|
||||||
|
* it.
|
||||||
|
*/
|
||||||
|
MBEDTLS_SSL_EARLY_DATA_STATE_REJECTED,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The client has sent an early data indication extension in its first
|
||||||
|
* ClientHello, the server has accepted them and the client has received the
|
||||||
|
* server Finished message. It cannot send early data to the server anymore.
|
||||||
|
*/
|
||||||
|
MBEDTLS_SSL_EARLY_DATA_STATE_SERVER_FINISHED_RECEIVED,
|
||||||
|
|
||||||
|
} mbedtls_ssl_early_data_state;
|
||||||
#endif /* MBEDTLS_SSL_EARLY_DATA */
|
#endif /* MBEDTLS_SSL_EARLY_DATA */
|
||||||
|
|
||||||
#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user