pub unsafe extern "C" fn mbedtls_ecp_gen_privkey(
    grp: *const mbedtls_ecp_group,
    d: *mut mbedtls_mpi,
    f_rng: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_uchar, arg3: usize) -> c_int>,
    p_rng: *mut c_void
) -> c_int
Expand description

\brief This function generates a private key.

\param grp The ECP group to generate a private key for. This must be initialized and have group parameters set, for example through mbedtls_ecp_group_load(). \param d The destination MPI (secret part). This must be initialized. \param f_rng The RNG function. This must not be \c NULL. \param p_rng The RNG parameter to be passed to \p f_rng. This may be \c NULL if \p f_rng doesn’t need a context argument.

\return \c 0 on success. \return An \c MBEDTLS_ERR_ECP_XXX or \c MBEDTLS_MPI_XXX error code on failure.