pub type mbedtls_ecdsa_context = mbedtls_ecp_keypair;
Expand description

\brief The ECP key-pair structure.

A generic key-pair that may be used for ECDSA and fixed ECDH, for example.

\note Members are deliberately in the same order as in the ::mbedtls_ecdsa_context structure.

Aliased Type§

struct mbedtls_ecdsa_context {
    pub private_grp: mbedtls_ecp_group,
    pub private_d: mbedtls_mpi,
    pub private_Q: mbedtls_ecp_point,
}

Fields§

§private_grp: mbedtls_ecp_group§private_d: mbedtls_mpi§private_Q: mbedtls_ecp_point