22#ifndef MBEDTLS_ECJPAKE_H
23#define MBEDTLS_ECJPAKE_H
41#if !defined(MBEDTLS_CONFIG_FILE)
44#include MBEDTLS_CONFIG_FILE
69#if !defined(MBEDTLS_ECJPAKE_ALT)
101#include "ecjpake_alt.h"
137 const unsigned char *secret,
171 unsigned char *buf,
size_t len,
size_t *olen,
172 int (*f_rng)(
void *,
unsigned char *,
size_t),
190 const unsigned char *buf,
212 unsigned char *buf,
size_t len,
size_t *olen,
213 int (*f_rng)(
void *,
unsigned char *,
size_t),
230 const unsigned char *buf,
252 unsigned char *buf,
size_t len,
size_t *olen,
253 int (*f_rng)(
void *,
unsigned char *,
size_t),
266#if defined(MBEDTLS_SELF_TEST)
273int mbedtls_ecjpake_self_test(
int verbose );
Configuration options (set of defines)
int mbedtls_ecjpake_read_round_two(mbedtls_ecjpake_context *ctx, const unsigned char *buf, size_t len)
Read and process the second round message (TLS: contents of the Client/ServerKeyExchange).
int mbedtls_ecjpake_write_round_one(mbedtls_ecjpake_context *ctx, unsigned char *buf, size_t len, size_t *olen, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Generate and write the first round message (TLS: contents of the Client/ServerHello extension,...
mbedtls_ecjpake_role
Roles in the EC J-PAKE exchange.
int mbedtls_ecjpake_setup(mbedtls_ecjpake_context *ctx, mbedtls_ecjpake_role role, mbedtls_md_type_t hash, mbedtls_ecp_group_id curve, const unsigned char *secret, size_t len)
Set up an ECJPAKE context for use.
void mbedtls_ecjpake_init(mbedtls_ecjpake_context *ctx)
Initialize an ECJPAKE context.
int mbedtls_ecjpake_write_round_two(mbedtls_ecjpake_context *ctx, unsigned char *buf, size_t len, size_t *olen, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Generate and write the second round message (TLS: contents of the Client/ServerKeyExchange).
int mbedtls_ecjpake_derive_secret(mbedtls_ecjpake_context *ctx, unsigned char *buf, size_t len, size_t *olen, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Derive the shared secret (TLS: Pre-Master Secret).
int mbedtls_ecjpake_check(const mbedtls_ecjpake_context *ctx)
Check if an ECJPAKE context is ready for use.
int mbedtls_ecjpake_read_round_one(mbedtls_ecjpake_context *ctx, const unsigned char *buf, size_t len)
Read and process the first round message (TLS: contents of the Client/ServerHello extension,...
void mbedtls_ecjpake_free(mbedtls_ecjpake_context *ctx)
This clears an ECJPAKE context and frees any embedded data structure.
@ MBEDTLS_ECJPAKE_CLIENT
Client
@ MBEDTLS_ECJPAKE_SERVER
Server
mbedtls_ecp_group_id
Domain-parameter identifiers: curve, subgroup, and generator.
mbedtls_md_type_t
Supported message digests.
This file provides an API for Elliptic Curves over GF(P) (ECP).
This file contains the generic message-digest wrapper.
EC J-PAKE context structure.
mbedtls_ecjpake_role role
Are we client or server?
mbedtls_ecp_point Xm2
My public key 2 C: X2, S: X4.
const mbedtls_md_info_t * md_info
Hash to use
mbedtls_ecp_point Xp2
Peer public key 2 C: X4, S: X2.
mbedtls_mpi xm2
My private key 2 C: x2, S: x4.
int point_format
Format for point export
mbedtls_ecp_point Xp1
Peer public key 1 C: X3, S: X1.
mbedtls_mpi xm1
My private key 1 C: x1, S: x3.
mbedtls_ecp_point Xp
Peer public key C: Xs, S: Xc.
mbedtls_ecp_point Xm1
My public key 1 C: X1, S: X3.
mbedtls_ecp_group grp
Elliptic curve
mbedtls_mpi s
Pre-shared secret (passphrase)
The ECP point structure, in Jacobian coordinates.
Message digest information.