11/**
2- * \file psa/ crypto_compat.h
2+ * \file crypto_compat.h
33 *
44 * \brief PSA cryptography module: Backward compatibility aliases
55 *
@@ -46,12 +46,12 @@ static inline int psa_key_handle_is_null(psa_key_handle_t handle)
4646/** Open a handle to an existing persistent key.
4747 *
4848 * Open a handle to a persistent key. A key is persistent if it was created
49- * with a lifetime other than # PSA_KEY_LIFETIME_VOLATILE. A persistent key
49+ * with a lifetime other than PSA_KEY_LIFETIME_VOLATILE. A persistent key
5050 * always has a nonzero key identifier, set with psa_set_key_id() when
5151 * creating the key. Implementations may provide additional pre-provisioned
5252 * keys that can be opened with psa_open_key(). Such keys have an application
5353 * key identifier in the vendor range, as documented in the description of
54- * # psa_key_id_t.
54+ * psa_key_id_t.
5555 *
5656 * The application must eventually close the handle with psa_close_key() or
5757 * psa_destroy_key() to release associated resources. If the application dies
@@ -93,11 +93,11 @@ static inline int psa_key_handle_is_null(psa_key_handle_t handle)
9393 * permission to access it. Note that this specification does not
9494 * define any way to create such a key, but it may be possible
9595 * through implementation-specific means.
96- * \retval #PSA_ERROR_COMMUNICATION_FAILURE \emptydescription
97- * \retval # PSA_ERROR_CORRUPTION_DETECTED \emptydescription
98- * \retval #PSA_ERROR_STORAGE_FAILURE \emptydescription
99- * \retval # PSA_ERROR_DATA_INVALID \emptydescription
100- * \retval #PSA_ERROR_DATA_CORRUPT \emptydescription
96+ * \retval #PSA_ERROR_COMMUNICATION_FAILURE
97+ * \retval PSA_ERROR_CORRUPTION_DETECTED
98+ * \retval #PSA_ERROR_STORAGE_FAILURE
99+ * \retval PSA_ERROR_DATA_INVALID
100+ * \retval #PSA_ERROR_DATA_CORRUPT
101101 * \retval #PSA_ERROR_BAD_STATE
102102 * The library has not been previously initialized by psa_crypto_init().
103103 * It is implementation-dependent whether a failure to initialize
@@ -137,8 +137,8 @@ psa_status_t psa_open_key(mbedtls_svc_key_id_t key,
137137 * \p handle was a valid handle or \c 0. It is now closed.
138138 * \retval #PSA_ERROR_INVALID_HANDLE
139139 * \p handle is not a valid handle nor \c 0.
140- * \retval #PSA_ERROR_COMMUNICATION_FAILURE \emptydescription
141- * \retval # PSA_ERROR_CORRUPTION_DETECTED \emptydescription
140+ * \retval #PSA_ERROR_COMMUNICATION_FAILURE
141+ * \retval PSA_ERROR_CORRUPTION_DETECTED
142142 * \retval #PSA_ERROR_BAD_STATE
143143 * The library has not been previously initialized by psa_crypto_init().
144144 * It is implementation-dependent whether a failure to initialize
@@ -175,8 +175,8 @@ psa_status_t psa_close_key(psa_key_handle_t handle);
175175 * \param[in] data Ignored.
176176 * \param data_length Must be 0.
177177 *
178- * \retval #PSA_SUCCESS \emptydescription
179- * \retval #PSA_ERROR_NOT_SUPPORTED \emptydescription
178+ * \retval #PSA_SUCCESS
179+ * \retval #PSA_ERROR_NOT_SUPPORTED
180180 */
181181static inline psa_status_t MBEDTLS_DEPRECATED psa_set_key_domain_parameters (
182182 psa_key_attributes_t * attributes ,
@@ -202,7 +202,7 @@ static inline psa_status_t MBEDTLS_DEPRECATED psa_set_key_domain_parameters(
202202 * \param data_size Ignored.
203203 * \param[out] data_length Set to 0.
204204 *
205- * \retval #PSA_SUCCESS \emptydescription
205+ * \retval #PSA_SUCCESS
206206 */
207207static inline psa_status_t MBEDTLS_DEPRECATED psa_get_key_domain_parameters (
208208 const psa_key_attributes_t * attributes ,
0 commit comments