mbed TLS v2.2.0
ecp.h
Go to the documentation of this file.
1 
23 #ifndef MBEDTLS_ECP_H
24 #define MBEDTLS_ECP_H
25 
26 #include "bignum.h"
27 
28 /*
29  * ECP error codes
30  */
31 #define MBEDTLS_ERR_ECP_BAD_INPUT_DATA -0x4F80
32 #define MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL -0x4F00
33 #define MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE -0x4E80
34 #define MBEDTLS_ERR_ECP_VERIFY_FAILED -0x4E00
35 #define MBEDTLS_ERR_ECP_ALLOC_FAILED -0x4D80
36 #define MBEDTLS_ERR_ECP_RANDOM_FAILED -0x4D00
37 #define MBEDTLS_ERR_ECP_INVALID_KEY -0x4C80
38 #define MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH -0x4C00
40 #if defined( MBEDTLS_ECP_ALT )
41 
42 #include "ecp_alt.h"
43 
44 #else /* #if defined( MBEDTLS_ECP_ALT ) */
45 
46 // Regular implementation
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50 
60 typedef enum
61 {
76 
82 #define MBEDTLS_ECP_DP_MAX 12
83 
87 typedef struct
88 {
90  uint16_t tls_id;
91  uint16_t bit_size;
92  const char *name;
94 
104 typedef struct
105 {
109 }
111 
136 typedef struct
137 {
144  size_t pbits;
145  size_t nbits;
146  unsigned int h;
147  int (*modp)(mbedtls_mpi *);
148  int (*t_pre)(mbedtls_ecp_point *, void *);
149  int (*t_post)(mbedtls_ecp_point *, void *);
150  void *t_data;
152  size_t T_size;
153 }
155 
163 typedef struct
164 {
168 }
170 
179 #if !defined(MBEDTLS_ECP_MAX_BITS)
180 
183 #define MBEDTLS_ECP_MAX_BITS 521
184 #endif
185 
186 #define MBEDTLS_ECP_MAX_BYTES ( ( MBEDTLS_ECP_MAX_BITS + 7 ) / 8 )
187 #define MBEDTLS_ECP_MAX_PT_LEN ( 2 * MBEDTLS_ECP_MAX_BYTES + 1 )
188 
189 #if !defined(MBEDTLS_ECP_WINDOW_SIZE)
190 /*
191  * Maximum "window" size used for point multiplication.
192  * Default: 6.
193  * Minimum value: 2. Maximum value: 7.
194  *
195  * Result is an array of at most ( 1 << ( MBEDTLS_ECP_WINDOW_SIZE - 1 ) )
196  * points used for point multiplication. This value is directly tied to EC
197  * peak memory usage, so decreasing it by one should roughly cut memory usage
198  * by two (if large curves are in use).
199  *
200  * Reduction in size may reduce speed, but larger curves are impacted first.
201  * Sample performances (in ECDHE handshakes/s, with FIXED_POINT_OPTIM = 1):
202  * w-size: 6 5 4 3 2
203  * 521 145 141 135 120 97
204  * 384 214 209 198 177 146
205  * 256 320 320 303 262 226
206 
207  * 224 475 475 453 398 342
208  * 192 640 640 633 587 476
209  */
210 #define MBEDTLS_ECP_WINDOW_SIZE 6
211 #endif /* MBEDTLS_ECP_WINDOW_SIZE */
212 
213 #if !defined(MBEDTLS_ECP_FIXED_POINT_OPTIM)
214 /*
215  * Trade memory for speed on fixed-point multiplication.
216  *
217  * This speeds up repeated multiplication of the generator (that is, the
218  * multiplication in ECDSA signatures, and half of the multiplications in
219  * ECDSA verification and ECDHE) by a factor roughly 3 to 4.
220  *
221  * The cost is increasing EC peak memory usage by a factor roughly 2.
222  *
223  * Change this value to 0 to reduce peak memory usage.
224  */
225 #define MBEDTLS_ECP_FIXED_POINT_OPTIM 1
226 #endif /* MBEDTLS_ECP_FIXED_POINT_OPTIM */
227 
228 /* \} name SECTION: Module settings */
229 
230 /*
231  * Point formats, from RFC 4492's enum ECPointFormat
232  */
233 #define MBEDTLS_ECP_PF_UNCOMPRESSED 0
234 #define MBEDTLS_ECP_PF_COMPRESSED 1
236 /*
237  * Some other constants from RFC 4492
238  */
239 #define MBEDTLS_ECP_TLS_NAMED_CURVE 3
247 const mbedtls_ecp_curve_info *mbedtls_ecp_curve_list( void );
248 
257 
266 
275 
284 
289 
294 
299 
304 
309 
314 
325 
336 
346 
355 
369  const mbedtls_ecp_point *Q );
370 
382  const char *x, const char *y );
383 
399  int format, size_t *olen,
400  unsigned char *buf, size_t buflen );
401 
421  const unsigned char *buf, size_t ilen );
422 
438  const unsigned char **buf, size_t len );
439 
455  int format, size_t *olen,
456  unsigned char *buf, size_t blen );
457 
472 
486 int mbedtls_ecp_tls_read_group( mbedtls_ecp_group *grp, const unsigned char **buf, size_t len );
487 
499 int mbedtls_ecp_tls_write_group( const mbedtls_ecp_group *grp, size_t *olen,
500  unsigned char *buf, size_t blen );
501 
529  const mbedtls_mpi *m, const mbedtls_ecp_point *P,
530  int (*f_rng)(void *, unsigned char *, size_t), void *p_rng );
531 
553  const mbedtls_mpi *m, const mbedtls_ecp_point *P,
554  const mbedtls_mpi *n, const mbedtls_ecp_point *Q );
555 
578 
592 int mbedtls_ecp_check_privkey( const mbedtls_ecp_group *grp, const mbedtls_mpi *d );
593 
612  const mbedtls_ecp_point *G,
614  int (*f_rng)(void *, unsigned char *, size_t),
615  void *p_rng );
616 
634  int (*f_rng)(void *, unsigned char *, size_t),
635  void *p_rng );
636 
649  int (*f_rng)(void *, unsigned char *, size_t), void *p_rng );
650 
662 
663 #if defined(MBEDTLS_SELF_TEST)
664 
669 int mbedtls_ecp_self_test( int verbose );
670 #endif
671 
672 #ifdef __cplusplus
673 }
674 #endif
675 
676 #endif /* #else of #if defined( MBEDTLS_ECP_ALT ) */
677 
678 #endif /* ecp.h */
uint16_t tls_id
Definition: ecp.h:90
int mbedtls_ecp_is_zero(mbedtls_ecp_point *pt)
Tell if a point is zero.
mbedtls_mpi N
Definition: ecp.h:143
mbedtls_mpi Z
Definition: ecp.h:108
int mbedtls_ecp_muladd(mbedtls_ecp_group *grp, mbedtls_ecp_point *R, const mbedtls_mpi *m, const mbedtls_ecp_point *P, const mbedtls_mpi *n, const mbedtls_ecp_point *Q)
Multiplication and addition of two points by integers: R = m * P + n * Q (Not thread-safe to use same...
int mbedtls_ecp_check_pub_priv(const mbedtls_ecp_keypair *pub, const mbedtls_ecp_keypair *prv)
Check a public-private key pair.
int mbedtls_ecp_point_read_binary(const mbedtls_ecp_group *grp, mbedtls_ecp_point *P, const unsigned char *buf, size_t ilen)
Import a point from unsigned binary data.
mbedtls_mpi Y
Definition: ecp.h:107
mbedtls_ecp_group grp
Definition: ecp.h:165
int mbedtls_ecp_group_load(mbedtls_ecp_group *grp, mbedtls_ecp_group_id index)
Set a group using well-known domain parameters.
ECP key pair structure.
Definition: ecp.h:163
Elliptic curves over GF(p)
int mbedtls_ecp_set_zero(mbedtls_ecp_point *pt)
Set a point to zero.
int mbedtls_ecp_copy(mbedtls_ecp_point *P, const mbedtls_ecp_point *Q)
Copy the contents of point Q into P.
const mbedtls_ecp_group_id * mbedtls_ecp_grp_id_list(void)
Get the list of supported curves in order of preferrence (grp_id only)
int mbedtls_ecp_group_copy(mbedtls_ecp_group *dst, const mbedtls_ecp_group *src)
Copy the contents of a group object.
size_t nbits
Definition: ecp.h:145
int mbedtls_ecp_gen_keypair(mbedtls_ecp_group *grp, mbedtls_mpi *d, mbedtls_ecp_point *Q, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Generate a keypair.
void mbedtls_ecp_point_free(mbedtls_ecp_point *pt)
Free the components of a point.
void mbedtls_ecp_keypair_init(mbedtls_ecp_keypair *key)
Initialize a key pair (as an invalid one)
size_t pbits
Definition: ecp.h:144
mbedtls_mpi X
Definition: ecp.h:106
Curve information for use by other modules.
Definition: ecp.h:87
Multi-precision integer library.
int mbedtls_ecp_gen_key(mbedtls_ecp_group_id grp_id, mbedtls_ecp_keypair *key, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Generate a keypair.
ECP group structure.
Definition: ecp.h:136
int mbedtls_ecp_check_privkey(const mbedtls_ecp_group *grp, const mbedtls_mpi *d)
Check that an mbedtls_mpi is a valid private key for this curve.
mbedtls_ecp_group_id id
Definition: ecp.h:138
const mbedtls_ecp_curve_info * mbedtls_ecp_curve_info_from_grp_id(mbedtls_ecp_group_id grp_id)
Get curve information from an internal group identifier.
int mbedtls_ecp_tls_write_group(const mbedtls_ecp_group *grp, size_t *olen, unsigned char *buf, size_t blen)
Write the TLS ECParameters record for a group.
void mbedtls_ecp_group_free(mbedtls_ecp_group *grp)
Free the components of an ECP group.
int mbedtls_ecp_mul(mbedtls_ecp_group *grp, mbedtls_ecp_point *R, const mbedtls_mpi *m, const mbedtls_ecp_point *P, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Multiplication by an integer: R = m * P (Not thread-safe to use same group in multiple threads) ...
int mbedtls_ecp_check_pubkey(const mbedtls_ecp_group *grp, const mbedtls_ecp_point *pt)
Check that a point is a valid public key on this curve.
mbedtls_mpi A
Definition: ecp.h:140
mbedtls_mpi P
Definition: ecp.h:139
void mbedtls_ecp_keypair_free(mbedtls_ecp_keypair *key)
Free the components of a key pair.
int mbedtls_ecp_tls_read_group(mbedtls_ecp_group *grp, const unsigned char **buf, size_t len)
Set a group from a TLS ECParameters record.
mbedtls_ecp_point Q
Definition: ecp.h:167
void * t_data
Definition: ecp.h:150
void mbedtls_ecp_point_init(mbedtls_ecp_point *pt)
Initialize a point (as zero)
mbedtls_ecp_group_id
Domain parameters (curve, subgroup and generator) identifiers.
Definition: ecp.h:60
int mbedtls_ecp_point_read_string(mbedtls_ecp_point *P, int radix, const char *x, const char *y)
Import a non-zero point from two ASCII strings.
int mbedtls_ecp_point_write_binary(const mbedtls_ecp_group *grp, const mbedtls_ecp_point *P, int format, size_t *olen, unsigned char *buf, size_t buflen)
Export a point into unsigned binary data.
const mbedtls_ecp_curve_info * mbedtls_ecp_curve_info_from_tls_id(uint16_t tls_id)
Get curve information from a TLS NamedCurve value.
int mbedtls_ecp_tls_read_point(const mbedtls_ecp_group *grp, mbedtls_ecp_point *pt, const unsigned char **buf, size_t len)
Import a point from a TLS ECPoint record.
mbedtls_ecp_group_id grp_id
Definition: ecp.h:89
int mbedtls_ecp_gen_keypair_base(mbedtls_ecp_group *grp, const mbedtls_ecp_point *G, mbedtls_mpi *d, mbedtls_ecp_point *Q, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Generate a keypair with configurable base point.
mbedtls_mpi d
Definition: ecp.h:166
unsigned int h
Definition: ecp.h:146
int mbedtls_ecp_point_cmp(const mbedtls_ecp_point *P, const mbedtls_ecp_point *Q)
Compare two points.
int mbedtls_ecp_tls_write_point(const mbedtls_ecp_group *grp, const mbedtls_ecp_point *pt, int format, size_t *olen, unsigned char *buf, size_t blen)
Export a point as a TLS ECPoint record.
size_t T_size
Definition: ecp.h:152
mbedtls_ecp_point * T
Definition: ecp.h:151
mbedtls_ecp_point G
Definition: ecp.h:142
MPI structure.
Definition: bignum.h:143
ECP point structure (jacobian coordinates)
Definition: ecp.h:104
const mbedtls_ecp_curve_info * mbedtls_ecp_curve_info_from_name(const char *name)
Get curve information from a human-readable name.
const char * name
Definition: ecp.h:92
uint16_t bit_size
Definition: ecp.h:91
mbedtls_mpi B
Definition: ecp.h:141
void mbedtls_ecp_group_init(mbedtls_ecp_group *grp)
Initialize a group (to something meaningless)