mbedtls_ecdsa_genkey() function
This function generates an ECDSA keypair on the given curve. \see ecp.h
Arguments
ctx
The ECDSA context to store the keypair in. This must be initialized.
gid
The elliptic curve to use. One of the various \c MBEDTLS_ECP_DP_XXX macros depending on configuration.
f_rng
The RNG function to use. This must not be \c NULL.
p_rng
The RNG context to be passed to \p f_rng. This may be \c NULL if \p f_rng doesn't need a context argument.
Return value
\c 0 on success. An \c MBEDTLS_ERR_ECP_XXX code on failure.