Renamings and other fixes
This commit is contained in:
parent
e40c469ad3
commit
ac7194133e
3 changed files with 50 additions and 41 deletions
|
@ -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)
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue