mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-01-04 13:45:05 +01:00
Rename ecdh_curve_list to curve_list
This commit is contained in:
parent
5de2580563
commit
de05390c85
4 changed files with 24 additions and 25 deletions
|
|
@ -814,9 +814,9 @@
|
|||
#define POLARSSL_SSL_TRUNCATED_HMAC
|
||||
|
||||
/**
|
||||
* \def POLARSSL_SSL_SET_ECDH_CURVES
|
||||
* \def POLARSSL_SSL_SET_CURVES
|
||||
*
|
||||
* Enable ssl_set_ecdh_curves().
|
||||
* Enable ssl_set_curves().
|
||||
*
|
||||
* This is disabled by default since it breaks binary compatibility with the
|
||||
* 1.3.x line. If you choose to enable it, you will need to rebuild your
|
||||
|
|
@ -825,9 +825,9 @@
|
|||
*
|
||||
* TODO: actually disable it when done working on this branch ,)
|
||||
*
|
||||
* Uncomment to make ssl_set_ecdh_curves() available.
|
||||
* Uncomment to make ssl_set_curves() available.
|
||||
*/
|
||||
#define POLARSSL_SSL_SET_ECDH_CURVES
|
||||
#define POLARSSL_SSL_SET_CURVES
|
||||
|
||||
/**
|
||||
* \def POLARSSL_THREADING_ALT
|
||||
|
|
|
|||
|
|
@ -728,8 +728,8 @@ struct _ssl_context
|
|||
int allow_legacy_renegotiation; /*!< allow legacy renegotiation */
|
||||
const int *ciphersuite_list[4]; /*!< allowed ciphersuites / version */
|
||||
#if defined(POLARSSL_KEY_EXCHANGE__SOME__ECDHE_ENABLED) && \
|
||||
defined(POLARSSL_SSL_SET_ECDH_CURVES)
|
||||
const ecp_group_id *ecdh_curve_list;/*!< allowed curves for ECDH */
|
||||
defined(POLARSSL_SSL_SET_CURVES)
|
||||
const ecp_group_id *curve_list; /*!< allowed curves */
|
||||
#endif
|
||||
#if defined(POLARSSL_SSL_TRUNCATED_HMAC)
|
||||
int trunc_hmac; /*!< negotiate truncated hmac? */
|
||||
|
|
@ -1160,7 +1160,7 @@ int ssl_set_dh_param_ctx( ssl_context *ssl, dhm_context *dhm_ctx );
|
|||
#endif
|
||||
|
||||
#if defined(POLARSSL_KEY_EXCHANGE__SOME__ECDHE_ENABLED) && \
|
||||
defined(POLARSSL_SSL_SET_ECDH_CURVES)
|
||||
defined(POLARSSL_SSL_SET_CURVES)
|
||||
/**
|
||||
* \brief Set the allowed ECDH curves.
|
||||
* (Default: all defined curves.)
|
||||
|
|
@ -1169,10 +1169,9 @@ int ssl_set_dh_param_ctx( ssl_context *ssl, dhm_context *dhm_ctx );
|
|||
* handshake curve preference.
|
||||
*
|
||||
* \param ssl SSL context
|
||||
* \param ecdh_curve_list Zero terminated list of the allowed ECDH curves
|
||||
* \param curves Zero terminated list of the allowed ECDH curves
|
||||
*/
|
||||
void ssl_set_ecdh_curves( ssl_context *ssl,
|
||||
const ecp_group_id *ecdh_curve_list );
|
||||
void ssl_set_curves( ssl_context *ssl, const ecp_group_id *curves );
|
||||
#endif
|
||||
|
||||
#if defined(POLARSSL_SSL_SERVER_NAME_INDICATION)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue