mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Renamings and other fixes
This commit is contained in:
@ -222,12 +222,22 @@ ecp_keypair;
|
||||
#define POLARSSL_ECP_TLS_NAMED_CURVE 3 /**< ECCurveType's named_curve */
|
||||
|
||||
/**
|
||||
* \brief Return the list of supported curves with associated info
|
||||
* \brief Get the list of supported curves in order of preferrence
|
||||
* (full information)
|
||||
*
|
||||
* \return A statically allocated array, the last entry is 0.
|
||||
*/
|
||||
const ecp_curve_info *ecp_curve_list( void );
|
||||
|
||||
/**
|
||||
* \brief Get the list of supported curves in order of preferrence
|
||||
* (grp_id only)
|
||||
*
|
||||
* \return A statically allocated array,
|
||||
* terminated with POLARSSL_ECP_DP_NONE.
|
||||
*/
|
||||
const ecp_group_id *ecp_grp_id_list( void );
|
||||
|
||||
/**
|
||||
* \brief Get curve information from an internal group identifier
|
||||
*
|
||||
@ -255,13 +265,6 @@ const ecp_curve_info *ecp_curve_info_from_tls_id( uint16_t tls_id );
|
||||
*/
|
||||
const ecp_curve_info *ecp_curve_info_from_name( const char *name );
|
||||
|
||||
/**
|
||||
* \brief Get the default ECDH curve list
|
||||
*
|
||||
* \return The default ECDH curve list
|
||||
*/
|
||||
ecp_group_id *ecp_get_default_echd_curve_list( void );
|
||||
|
||||
/**
|
||||
* \brief Initialize a point (as zero)
|
||||
*/
|
||||
|
Reference in New Issue
Block a user