mbedtls_ecdh_calc_secret() function
This function derives and exports the shared secret. This is the last function used by both TLS client and servers. \see ecp.h
Arguments
ctx
The ECDH context to use. This must be initialized and have its own private key generated and the peer's public key imported.
olen
The address at which to store the total number of Bytes written on success. This must not be \c NULL.
buf
The buffer to write the generated shared key to. This must be a writable buffer of size \p blen Bytes.
blen
The length of the destination buffer \p buf in Bytes.
f_rng
The RNG function, for blinding purposes. This may b \c NULL if blinding isn't needed.
p_rng
The RNG context. This may be \c NULL if \p f_rng doesn't need a context argument.
Return value
\c 0 on success. #MBEDTLS_ERR_ECP_IN_PROGRESS if maximum number of operations was reached: see \c mbedtls_ecp_set_max_ops(). Another \c MBEDTLS_ERR_ECP_XXX error code on failure.
Notes
If \p f_rng is not NULL, it is used to implement countermeasures against side-channel attacks. For more information, see mbedtls_ecp_mul().