Mbed OS Reference
Loading...
Searching...
No Matches
mbedtls_ecdh_context_mbed Struct Reference

The context used by the default ECDH implementation. More...

#include <ecdh.h>

Data Fields

mbedtls_ecp_group grp
 
mbedtls_mpi d
 
mbedtls_ecp_point Q
 
mbedtls_ecp_point Qp
 
mbedtls_mpi z
 

Detailed Description

The context used by the default ECDH implementation.

Later versions might change the structure of this context, therefore users should not make any assumptions about the structure of mbedtls_ecdh_context_mbed.

Definition at line 92 of file ecdh.h.

Field Documentation

◆ grp

The elliptic curve used.

Definition at line 94 of file ecdh.h.

◆ d

The private key.

Definition at line 95 of file ecdh.h.

◆ Q

The public key.

Definition at line 96 of file ecdh.h.

◆ Qp

The value of the public key of the peer.

Definition at line 97 of file ecdh.h.

◆ z

The shared secret.

Definition at line 98 of file ecdh.h.