pub unsafe extern "C" fn mbedtls_ecjpake_write_round_two(
    ctx: *mut mbedtls_ecjpake_context,
    buf: *mut c_uchar,
    len: usize,
    olen: *mut usize,
    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 Generate and write the second round message (TLS: contents of the Client/ServerKeyExchange).

\param ctx The ECJPAKE context to use. This must be initialized, set up, and already have performed round one. \param buf The buffer to write the round two contents to. This must be a writable buffer of length \p len Bytes. \param len The size of \p buf in Bytes. \param olen The address at which to store the total number of Bytes written to \p buf. This must not be \c NULL. \param f_rng The RNG function to use. 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 use a context.

\return \c 0 if successful. \return A negative error code on failure.