Rename ecp_curve_info.size to bit_size

This commit is contained in:
Manuel Pégourié-Gonnard 2015-06-18 15:45:05 +02:00
parent 898e0aa210
commit 797f48ace6
4 changed files with 10 additions and 8 deletions

View file

@ -84,9 +84,9 @@ typedef enum
typedef struct
{
mbedtls_ecp_group_id grp_id; /*!< Internal identifier */
uint16_t tls_id; /*!< TLS NamedCurve identifier */
uint16_t size; /*!< Curve size in bits */
const char *name; /*!< Human-friendly name */
uint16_t tls_id; /*!< TLS NamedCurve identifier */
uint16_t bit_size; /*!< Curve size in bits */
const char *name; /*!< Human-friendly name */
} mbedtls_ecp_curve_info;
/**