OPTIGA Trust M  1.1.0
C++ library for Optiga Trust M Chip Security Controller
ecp.h
Go to the documentation of this file.
1 
17 /*
18  * Copyright (C) 2006-2018, Arm Limited (or its affiliates), All Rights Reserved
19  * SPDX-License-Identifier: Apache-2.0
20  *
21  * Licensed under the Apache License, Version 2.0 (the "License"); you may
22  * not use this file except in compliance with the License.
23  * You may obtain a copy of the License at
24  *
25  * http://www.apache.org/licenses/LICENSE-2.0
26  *
27  * Unless required by applicable law or agreed to in writing, software
28  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
29  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30  * See the License for the specific language governing permissions and
31  * limitations under the License.
32  *
33  * This file is part of Mbed TLS (https://tls.mbed.org)
34  */
35 
36 #ifndef MBEDTLS_ECP_H
37 #define MBEDTLS_ECP_H
38 
39 #include "bignum.h"
40 
41 /*
42  * ECP error codes
43  */
44 #define MBEDTLS_ERR_ECP_BAD_INPUT_DATA -0x4F80
45 #define MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL -0x4F00
46 #define MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE -0x4E80
47 #define MBEDTLS_ERR_ECP_VERIFY_FAILED -0x4E00
48 #define MBEDTLS_ERR_ECP_ALLOC_FAILED -0x4D80
49 #define MBEDTLS_ERR_ECP_RANDOM_FAILED -0x4D00
50 #define MBEDTLS_ERR_ECP_INVALID_KEY -0x4C80
51 #define MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH -0x4C00
53 /* MBEDTLS_ERR_ECP_HW_ACCEL_FAILED is deprecated and should not be used. */
54 #define MBEDTLS_ERR_ECP_HW_ACCEL_FAILED -0x4B80
56 #define MBEDTLS_ERR_ECP_IN_PROGRESS -0x4B00
58 #ifdef __cplusplus
59 extern "C" {
60 #endif
61 
71 typedef enum
72 {
88 
94 #define MBEDTLS_ECP_DP_MAX 12
95 
99 typedef struct mbedtls_ecp_curve_info
100 {
102  uint16_t tls_id;
103  uint16_t bit_size;
104  const char *name;
106 
118 typedef struct mbedtls_ecp_point
119 {
123 }
125 
126 #if !defined(MBEDTLS_ECP_ALT)
127 /*
128  * default mbed TLS elliptic curve arithmetic implementation
129  *
130  * (in case MBEDTLS_ECP_ALT is defined then the developer has to provide an
131  * alternative implementation for the whole module and it will replace this
132  * one.)
133  */
134 
167 typedef struct mbedtls_ecp_group
168 {
177  size_t pbits;
178  size_t nbits;
181  unsigned int h;
182  int (*modp)(mbedtls_mpi *);
184  int (*t_pre)(mbedtls_ecp_point *, void *);
185  int (*t_post)(mbedtls_ecp_point *, void *);
186  void *t_data;
188  size_t T_size;
189 }
191 
192 #if defined(MBEDTLS_ECP_RESTARTABLE)
193 
199 typedef struct mbedtls_ecp_restart_mul mbedtls_ecp_restart_mul_ctx;
200 
206 typedef struct mbedtls_ecp_restart_muladd mbedtls_ecp_restart_muladd_ctx;
207 
211 typedef struct
212 {
213  unsigned ops_done;
214  unsigned depth;
215  mbedtls_ecp_restart_mul_ctx *rsm;
216  mbedtls_ecp_restart_muladd_ctx *ma;
218 
219 /*
220  * Operation counts for restartable functions
221  */
222 #define MBEDTLS_ECP_OPS_CHK 3
223 #define MBEDTLS_ECP_OPS_DBL 8
224 #define MBEDTLS_ECP_OPS_ADD 11
225 #define MBEDTLS_ECP_OPS_INV 120
238 int mbedtls_ecp_check_budget( const mbedtls_ecp_group *grp,
239  mbedtls_ecp_restart_ctx *rs_ctx,
240  unsigned ops );
241 
242 /* Utility macro for checking and updating ops budget */
243 #define MBEDTLS_ECP_BUDGET( ops ) \
244  MBEDTLS_MPI_CHK( mbedtls_ecp_check_budget( grp, rs_ctx, \
245  (unsigned) (ops) ) );
246 
247 #else /* MBEDTLS_ECP_RESTARTABLE */
248 
249 #define MBEDTLS_ECP_BUDGET( ops ) /* no-op; for compatibility */
250 
251 /* We want to declare restartable versions of existing functions anyway */
253 
254 #endif /* MBEDTLS_ECP_RESTARTABLE */
255 
264 #if !defined(MBEDTLS_ECP_MAX_BITS)
265 
268 #define MBEDTLS_ECP_MAX_BITS 521
269 #endif
270 
271 #define MBEDTLS_ECP_MAX_BYTES ( ( MBEDTLS_ECP_MAX_BITS + 7 ) / 8 )
272 #define MBEDTLS_ECP_MAX_PT_LEN ( 2 * MBEDTLS_ECP_MAX_BYTES + 1 )
273 
274 #if !defined(MBEDTLS_ECP_WINDOW_SIZE)
275 /*
276  * Maximum "window" size used for point multiplication.
277  * Default: 6.
278  * Minimum value: 2. Maximum value: 7.
279  *
280  * Result is an array of at most ( 1 << ( MBEDTLS_ECP_WINDOW_SIZE - 1 ) )
281  * points used for point multiplication. This value is directly tied to EC
282  * peak memory usage, so decreasing it by one should roughly cut memory usage
283  * by two (if large curves are in use).
284  *
285  * Reduction in size may reduce speed, but larger curves are impacted first.
286  * Sample performances (in ECDHE handshakes/s, with FIXED_POINT_OPTIM = 1):
287  * w-size: 6 5 4 3 2
288  * 521 145 141 135 120 97
289  * 384 214 209 198 177 146
290  * 256 320 320 303 262 226
291  * 224 475 475 453 398 342
292  * 192 640 640 633 587 476
293  */
294 #define MBEDTLS_ECP_WINDOW_SIZE 6
295 #endif /* MBEDTLS_ECP_WINDOW_SIZE */
296 
297 #if !defined(MBEDTLS_ECP_FIXED_POINT_OPTIM)
298 /*
299  * Trade memory for speed on fixed-point multiplication.
300  *
301  * This speeds up repeated multiplication of the generator (that is, the
302  * multiplication in ECDSA signatures, and half of the multiplications in
303  * ECDSA verification and ECDHE) by a factor roughly 3 to 4.
304  *
305  * The cost is increasing EC peak memory usage by a factor roughly 2.
306  *
307  * Change this value to 0 to reduce peak memory usage.
308  */
309 #define MBEDTLS_ECP_FIXED_POINT_OPTIM 1
310 #endif /* MBEDTLS_ECP_FIXED_POINT_OPTIM */
311 
312 /* \} name SECTION: Module settings */
313 
314 #else /* MBEDTLS_ECP_ALT */
315 #include "ecp_alt.h"
316 #endif /* MBEDTLS_ECP_ALT */
317 
326 typedef struct mbedtls_ecp_keypair
327 {
331 }
333 
334 /*
335  * Point formats, from RFC 4492's enum ECPointFormat
336  */
337 #define MBEDTLS_ECP_PF_UNCOMPRESSED 0
338 #define MBEDTLS_ECP_PF_COMPRESSED 1
340 /*
341  * Some other constants from RFC 4492
342  */
343 #define MBEDTLS_ECP_TLS_NAMED_CURVE 3
345 #if defined(MBEDTLS_ECP_RESTARTABLE)
346 
403 void mbedtls_ecp_set_max_ops( unsigned max_ops );
404 
411 int mbedtls_ecp_restart_is_enabled( void );
412 #endif /* MBEDTLS_ECP_RESTARTABLE */
413 
422 
432 
443 
454 
465 
472 
483 
490 
497 
506 
515 
516 #if defined(MBEDTLS_ECP_RESTARTABLE)
517 
523 void mbedtls_ecp_restart_init( mbedtls_ecp_restart_ctx *ctx );
524 
532 void mbedtls_ecp_restart_free( mbedtls_ecp_restart_ctx *ctx );
533 #endif /* MBEDTLS_ECP_RESTARTABLE */
534 
547 
560  const mbedtls_ecp_group *src );
561 
572 
583 
597  const mbedtls_ecp_point *Q );
598 
612  const char *x, const char *y );
613 
635  int format, size_t *olen,
636  unsigned char *buf, size_t buflen );
637 
662  const unsigned char *buf, size_t ilen );
663 
683  mbedtls_ecp_point *pt,
684  const unsigned char **buf, size_t len );
685 
709  const mbedtls_ecp_point *pt,
710  int format, size_t *olen,
711  unsigned char *buf, size_t blen );
712 
731 
750  const unsigned char **buf, size_t len );
751 
771  const unsigned char **buf,
772  size_t len );
792  size_t *olen,
793  unsigned char *buf, size_t blen );
794 
829  const mbedtls_mpi *m, const mbedtls_ecp_point *P,
830  int (*f_rng)(void *, unsigned char *, size_t), void *p_rng );
831 
863  const mbedtls_mpi *m, const mbedtls_ecp_point *P,
864  int (*f_rng)(void *, unsigned char *, size_t), void *p_rng,
865  mbedtls_ecp_restart_ctx *rs_ctx );
866 
897  const mbedtls_mpi *m, const mbedtls_ecp_point *P,
898  const mbedtls_mpi *n, const mbedtls_ecp_point *Q );
899 
936  const mbedtls_mpi *m, const mbedtls_ecp_point *P,
937  const mbedtls_mpi *n, const mbedtls_ecp_point *Q,
938  mbedtls_ecp_restart_ctx *rs_ctx );
939 
968  const mbedtls_ecp_point *pt );
969 
990  const mbedtls_mpi *d );
991 
1008  mbedtls_mpi *d,
1009  int (*f_rng)(void *, unsigned char *, size_t),
1010  void *p_rng );
1011 
1040  const mbedtls_ecp_point *G,
1042  int (*f_rng)(void *, unsigned char *, size_t),
1043  void *p_rng );
1044 
1069  mbedtls_ecp_point *Q,
1070  int (*f_rng)(void *, unsigned char *, size_t),
1071  void *p_rng );
1072 
1087  int (*f_rng)(void *, unsigned char *, size_t),
1088  void *p_rng );
1089 
1108  const mbedtls_ecp_keypair *prv );
1109 
1110 #if defined(MBEDTLS_SELF_TEST)
1111 
1118 int mbedtls_ecp_self_test( int verbose );
1119 
1120 #endif /* MBEDTLS_SELF_TEST */
1121 
1122 #ifdef __cplusplus
1123 }
1124 #endif
1125 
1126 #endif /* ecp.h */
uint16_t tls_id
Definition: ecp.h:102
int(* modp)(mbedtls_mpi *)
Definition: ecp.h:182
int mbedtls_ecp_is_zero(mbedtls_ecp_point *pt)
This function checks if a point is the point at infinity.
mbedtls_mpi N
Definition: ecp.h:176
int mbedtls_ecp_mul_restartable(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, mbedtls_ecp_restart_ctx *rs_ctx)
This function performs multiplication of a point by an integer: R = m * P in a restartable way.
int(* t_post)(mbedtls_ecp_point *, void *)
Definition: ecp.h:185
Definition: ecp.h:74
mbedtls_mpi Z
Definition: ecp.h:122
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)
This function performs multiplication and addition of two points by integers: R = m * P + n * Q.
int mbedtls_ecp_check_pub_priv(const mbedtls_ecp_keypair *pub, const mbedtls_ecp_keypair *prv)
This function checks that the keypair objects pub and prv have the same group and the same public poi...
int mbedtls_ecp_point_read_binary(const mbedtls_ecp_group *grp, mbedtls_ecp_point *P, const unsigned char *buf, size_t ilen)
This function imports a point from unsigned binary data.
mbedtls_mpi Y
Definition: ecp.h:121
int mbedtls_ecp_muladd_restartable(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, mbedtls_ecp_restart_ctx *rs_ctx)
This function performs multiplication and addition of two points by integers: R = m * P + n * Q in a ...
mbedtls_ecp_group grp
Definition: ecp.h:328
Definition: ecp.h:81
struct mbedtls_ecp_curve_info mbedtls_ecp_curve_info
The ECP key-pair structure.
Definition: ecp.h:326
int mbedtls_ecp_set_zero(mbedtls_ecp_point *pt)
This function sets a point to the point at infinity.
int mbedtls_ecp_copy(mbedtls_ecp_point *P, const mbedtls_ecp_point *Q)
This function copies the contents of point Q into point P.
const mbedtls_ecp_group_id * mbedtls_ecp_grp_id_list(void)
This function retrieves the list of internal group identifiers of all supported curves in the order o...
int mbedtls_ecp_group_copy(mbedtls_ecp_group *dst, const mbedtls_ecp_group *src)
This function copies the contents of group src into group dst.
Definition: ecp.h:84
Definition: ecp.h:73
size_t nbits
Definition: ecp.h:178
struct mbedtls_ecp_group mbedtls_ecp_group
The ECP group structure.
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)
This function generates an ECP keypair.
void mbedtls_ecp_point_free(mbedtls_ecp_point *pt)
This function frees the components of a point.
int mbedtls_ecp_gen_privkey(const mbedtls_ecp_group *grp, mbedtls_mpi *d, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
This function generates a private key.
void mbedtls_ecp_keypair_init(mbedtls_ecp_keypair *key)
This function initializes a key pair as an invalid one.
size_t pbits
Definition: ecp.h:177
mbedtls_mpi X
Definition: ecp.h:120
Definition: ecp.h:99
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)
This function generates an ECP key.
The ECP group structure.
Definition: ecp.h:167
int mbedtls_ecp_check_privkey(const mbedtls_ecp_group *grp, const mbedtls_mpi *d)
This function checks that an mbedtls_mpi is a valid private key for this curve.
mbedtls_ecp_group_id id
Definition: ecp.h:169
const mbedtls_ecp_curve_info * mbedtls_ecp_curve_info_from_grp_id(mbedtls_ecp_group_id grp_id)
This function retrieves curve information from an internal group identifier.
#define P(a, b, c, d, e, f, g, h, x, K)
Definition: sha256.c:193
int mbedtls_ecp_tls_write_group(const mbedtls_ecp_group *grp, size_t *olen, unsigned char *buf, size_t blen)
This function exports an elliptic curve as a TLS ECParameters record as defined in RFC 4492,...
void mbedtls_ecp_group_free(mbedtls_ecp_group *grp)
This function frees 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)
This function performs a scalar multiplication of a point by an integer: R = m * P.
int mbedtls_ecp_check_pubkey(const mbedtls_ecp_group *grp, const mbedtls_ecp_point *pt)
This function checks that a point is a valid public key on this curve.
mbedtls_mpi A
Definition: ecp.h:171
Definition: ecp.h:83
mbedtls_mpi P
Definition: ecp.h:170
void mbedtls_ecp_keypair_free(mbedtls_ecp_keypair *key)
This function frees the components of a key pair.
struct mbedtls_ecp_keypair mbedtls_ecp_keypair
The ECP key-pair structure.
int mbedtls_ecp_tls_read_group(mbedtls_ecp_group *grp, const unsigned char **buf, size_t len)
This function sets up an ECP group context from a TLS ECParameters record as defined in RFC 4492,...
void mbedtls_ecp_restart_ctx
Definition: ecp.h:252
mbedtls_ecp_point Q
Definition: ecp.h:330
void * t_data
Definition: ecp.h:186
void mbedtls_ecp_point_init(mbedtls_ecp_point *pt)
This function initializes a point as zero.
mbedtls_ecp_group_id
Definition: ecp.h:71
int mbedtls_ecp_point_read_string(mbedtls_ecp_point *P, int radix, const char *x, const char *y)
This function imports 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)
This function exports a point into unsigned binary data.
const mbedtls_ecp_curve_info * mbedtls_ecp_curve_info_from_tls_id(uint16_t tls_id)
This function retrieves 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)
This function imports a point from a TLS ECPoint record.
mbedtls_ecp_group_id grp_id
Definition: ecp.h:101
int mbedtls_ecp_tls_read_group_id(mbedtls_ecp_group_id *grp, const unsigned char **buf, size_t len)
This function extracts an elliptic curve group ID from a TLS ECParameters record as defined in RFC 44...
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)
This function generates a keypair with a configurable base point.
mbedtls_mpi d
Definition: ecp.h:329
Definition: ecp.h:75
unsigned int h
Definition: ecp.h:181
int mbedtls_ecp_point_cmp(const mbedtls_ecp_point *P, const mbedtls_ecp_point *Q)
This function compares 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)
This function exports a point as a TLS ECPoint record defined in RFC 4492, Section 5....
size_t T_size
Definition: ecp.h:188
Definition: ecp.h:82
mbedtls_ecp_point * T
Definition: ecp.h:187
Definition: ecp.h:86
mbedtls_ecp_point G
Definition: ecp.h:175
MPI structure.
Definition: bignum.h:180
struct mbedtls_ecp_point mbedtls_ecp_point
The ECP point structure, in Jacobian coordinates.
#define R(t)
Definition: sha256.c:187
The ECP point structure, in Jacobian coordinates.
Definition: ecp.h:118
Definition: ecp.h:76
const mbedtls_ecp_curve_info * mbedtls_ecp_curve_info_from_name(const char *name)
This function retrieves curve information from a human-readable name.
const mbedtls_ecp_curve_info * mbedtls_ecp_curve_list(void)
This function retrieves the information defined in mbedtls_ecp_curve_info() for all supported curves ...
Definition: ecp.h:77
const char * name
Definition: ecp.h:104
Definition: ecp.h:79
Definition: ecp.h:78
int(* t_pre)(mbedtls_ecp_point *, void *)
Definition: ecp.h:184
int mbedtls_ecp_group_load(mbedtls_ecp_group *grp, mbedtls_ecp_group_id id)
This function sets up an ECP group context from a standardized set of domain parameters.
Definition: ecp.h:80
uint16_t bit_size
Definition: ecp.h:103
Definition: ecp.h:85
mbedtls_mpi B
Definition: ecp.h:173
void mbedtls_ecp_group_init(mbedtls_ecp_group *grp)
This function initializes an ECP group context without loading any domain parameters.