Merge pull request #8887 from gilles-peskine-arm/pk_import_into_psa-fix_doxygen_code_blocks

Fix intended code blocks that were not suitably indented
This commit is contained in:
Manuel Pégourié-Gonnard 2024-03-12 11:27:45 +00:00 committed by GitHub
commit fe164aecfc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -607,11 +607,10 @@ int mbedtls_pk_get_psa_attributes(const mbedtls_pk_context *pk,
* psa_set_key_identifier() and optionally * psa_set_key_identifier() and optionally
* psa_set_key_lifetime(). * psa_set_key_lifetime().
* - To import only the public part of a key pair: * - To import only the public part of a key pair:
* ``` *
* psa_set_key_type(&attributes, * psa_set_key_type(&attributes,
* PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR( * PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR(
* psa_get_key_type(&attributes))); * psa_get_key_type(&attributes)));
* ```
* - Restrict the key usage if desired. * - Restrict the key usage if desired.
* -# Call mbedtls_pk_import_into_psa(). * -# Call mbedtls_pk_import_into_psa().
* *