pub unsafe extern "C" fn mbedtls_pk_parse_public_key(
    ctx: *mut mbedtls_pk_context,
    key: *const c_uchar,
    keylen: usize
) -> c_int
Expand description

\ingroup pk_module / /* \brief Parse a public key in PEM or DER format

\note If #MBEDTLS_USE_PSA_CRYPTO is enabled, the PSA crypto subsystem must have been initialized by calling psa_crypto_init() before calling this function.

\param ctx The PK context to fill. It must have been initialized but not set up. \param key Input buffer to parse. The buffer must contain the input exactly, with no extra trailing material. For PEM, the buffer must contain a null-terminated string. \param keylen Size of \b key in bytes. For PEM data, this includes the terminating null byte, so \p keylen must be equal to strlen(key) + 1.

\note On entry, ctx must be empty, either freshly initialised with mbedtls_pk_init() or reset with mbedtls_pk_free(). If you need a specific key type, check the result with mbedtls_pk_can_do().

\note For compressed points, see #MBEDTLS_ECP_PF_COMPRESSED for limitations.

\note The key is also checked for correctness.

\return 0 if successful, or a specific PK or PEM error code