34 #ifndef MBEDTLS_ECDH_H 35 #define MBEDTLS_ECDH_H 49 #define MBEDTLS_ECDH_LEGACY_CONTEXT 64 #if !defined(MBEDTLS_ECDH_LEGACY_CONTEXT) 73 MBEDTLS_ECDH_VARIANT_NONE = 0,
74 MBEDTLS_ECDH_VARIANT_MBEDTLS_2_0,
75 } mbedtls_ecdh_variant;
84 typedef struct mbedtls_ecdh_context_mbed
91 #if defined(MBEDTLS_ECP_RESTARTABLE) 94 } mbedtls_ecdh_context_mbed;
106 #if defined(MBEDTLS_ECDH_LEGACY_CONTEXT) 116 #if defined(MBEDTLS_ECP_RESTARTABLE) 124 mbedtls_ecdh_variant var;
127 mbedtls_ecdh_context_mbed mbed_ecdh;
131 #if defined(MBEDTLS_ECP_RESTARTABLE) 132 uint8_t restart_enabled;
168 int (*f_rng)(
void *,
unsigned char *,
size_t),
207 int (*f_rng)(
void *,
unsigned char *,
size_t),
271 unsigned char *buf,
size_t blen,
272 int (*f_rng)(
void *,
unsigned char *,
size_t),
300 const unsigned char **buf,
301 const unsigned char *end );
353 unsigned char *buf,
size_t blen,
354 int (*f_rng)(
void *,
unsigned char *,
size_t),
377 const unsigned char *buf,
size_t blen );
410 unsigned char *buf,
size_t blen,
411 int (*f_rng)(
void *,
unsigned char *,
size_t),
414 #if defined(MBEDTLS_ECP_RESTARTABLE) int mbedtls_ecdh_make_params(mbedtls_ecdh_context *ctx, size_t *olen, unsigned char *buf, size_t blen, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
This function generates an EC key pair and exports its in the format used in a TLS ServerKeyExchange ...
mbedtls_mpi z
Definition: ecdh.h:111
This file provides an API for Elliptic Curves over GF(P) (ECP).
mbedtls_mpi d
Definition: ecdh.h:108
int mbedtls_ecdh_make_public(mbedtls_ecdh_context *ctx, size_t *olen, unsigned char *buf, size_t blen, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
This function generates a public key and exports it as a TLS ClientKeyExchange payload.
The ECP key-pair structure.
Definition: ecp.h:326
void mbedtls_ecdh_free(mbedtls_ecdh_context *ctx)
This function frees a context.
int mbedtls_ecdh_setup(mbedtls_ecdh_context *ctx, mbedtls_ecp_group_id grp_id)
This function sets up the ECDH context with the information given.
mbedtls_mpi _d
Definition: ecdh.h:115
int mbedtls_ecdh_read_public(mbedtls_ecdh_context *ctx, const unsigned char *buf, size_t blen)
This function parses and processes the ECDHE payload of a TLS ClientKeyExchange message.
The ECP group structure.
Definition: ecp.h:167
int mbedtls_ecdh_compute_shared(mbedtls_ecp_group *grp, mbedtls_mpi *z, const mbedtls_ecp_point *Q, const mbedtls_mpi *d, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
This function computes the shared secret.
mbedtls_ecp_point Vi
Definition: ecdh.h:113
mbedtls_ecp_group grp
Definition: ecdh.h:107
void mbedtls_ecdh_init(mbedtls_ecdh_context *ctx)
This function initializes an ECDH context.
int mbedtls_ecdh_gen_public(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 ECDH keypair on an elliptic curve.
mbedtls_ecdh_side
Definition: ecdh.h:58
void mbedtls_ecp_restart_ctx
Definition: ecp.h:252
int mbedtls_ecdh_read_params(mbedtls_ecdh_context *ctx, const unsigned char **buf, const unsigned char *end)
This function parses the ECDHE parameters in a TLS ServerKeyExchange handshake message.
int point_format
Definition: ecdh.h:112
mbedtls_ecp_group_id
Definition: ecp.h:71
struct mbedtls_ecdh_context mbedtls_ecdh_context
The ECDH context structure.
The ECDH context structure.
Definition: ecdh.h:104
mbedtls_ecp_point Qp
Definition: ecdh.h:110
mbedtls_ecp_point Q
Definition: ecdh.h:109
mbedtls_ecp_point Vf
Definition: ecdh.h:114
MPI structure.
Definition: bignum.h:180
int mbedtls_ecdh_calc_secret(mbedtls_ecdh_context *ctx, size_t *olen, unsigned char *buf, size_t blen, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
This function derives and exports the shared secret.
The ECP point structure, in Jacobian coordinates.
Definition: ecp.h:118
int mbedtls_ecdh_get_params(mbedtls_ecdh_context *ctx, const mbedtls_ecp_keypair *key, mbedtls_ecdh_side side)
This function sets up an ECDH context from an EC key.